H5的语义化标签

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<style type="text/css">
			header{
				width: 100%;
				h200px;
				background-color: #CCC;
			}
			nav{
				width: 100%;
				background-color: red;
			}
			main {
				width: 100%;
				height: 500px;
				background-color: blue;
			}
			article{
				width: 80%;
				height: 100%;
				background-color: green;
				float: left;
			}
			aside{
				width: 20%;
				height: 100%;
				background-color: pink;
				float: left;
			}
			footer{
				width: 100%;
				background-color: purple;
			}
		</style>
	</head>
	<body>
		<header>头部</header>
		<nav>导航</nav>
		<main>
			<article>左边</article>
			<aside>右边</aside>
		</main>
		<footer>底部</footer>
	</body>
</html>

猜你喜欢

转载自blog.csdn.net/weixin_43727391/article/details/84197225
今日推荐