1,代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/demo1.css" />
<title>标签语义化</title>
</head>
<body>
<!--标签语义化-->
<!--页眉-->
<header>
<h1><header></h1>
</header>
<div class="container">
<!--侧边栏-->
<aside>
<h1><aside></h1>
</aside>
<!--主体-->
<main>
<h1><main></h1>
<div>
<!--主体部分-->
<section><h1><section></h1></section>
<section><h1><section></h1></section>
</div>
</main>
</div>
<!--页脚-->
<footer>
<h1><footer></h1>
</footer>
</body>
</html>
2,预览
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!