html5小白——html5基础(简单个人博客模板)

<!DOCTYPE html>
<html>
<head>
	<title>个人博客</title>
</head>
<body>
	<header>
		<h1>网页标题</h1>
		<h2>次级标题</h2>
		<h4>标题提示</h4>
	</header>
	<main>
		<nav>
			<h3>导航栏</h3>
			<a href="#">链接1</a>
			<a href="#">链接2</a>
			<a href="#">链接3</a>
		</nav>
		<section>
			<h2>文章块</h2>
			<article>
				<header>
					<h1>文章标题</h1>
				</header>
				<p>文章内容</p>
				<footer>
					<h2>文章脚注</h2>
				</footer>
			</article>
		</section>
		<aside>
			<h3>辅助信息</h3>
		</aside>
		<footer>
			<h2>[网页脚注]</h2>
		</footer>
	</main>

</body>
</html>
发布了82 篇原创文章 · 获赞 21 · 访问量 2040

猜你喜欢

转载自blog.csdn.net/weixin_45174208/article/details/103429466
今日推荐