使用HTML5编写归档页面或类别索引可以遵循以下步骤:
<!DOCTYPE html>
声明文档类型,并使用<html>
标签指定字符集,例如:<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>归档页面</title>
</head>
<body>
<!-- 内容区域 -->
</body>
</html>
<header>
、<nav>
、<article>
、<section>
、<aside>
和<footer>
等语义化标签,例如:<body>
<header>
<h1>归档页面</h1>
</header>
<nav>
<ul>
<li><a href="#">分类索引</a></li>
</ul>
</nav>
<article>
<h2>文章标题</h2>
<p>文章内容</p>
</article>
<section>
<h2>部分标题</h2>
<p>部分内容</p>
</section>
<aside>
<h2>侧栏标题</h2>
<p>侧栏内容</p>
</aside>
<footer>
<p>版权信息</p>
</footer>
</body>
</html>
<figure>
和<figcaption>
标签:使用<figure>
标签将相关的内容组合在一起,并使用<figcaption>
标签为每个内容添加说明,例如:<body>
<header>
<h1>归档页面</h1>
</header>
<nav>
<ul>
<li><a href="#">分类索引</a></li>
</ul>
</nav>
<article>
<figure>
<img src="image1.jpg" alt="文章配图">
<figcaption>
<h2>文章标题</h2>
<p>文章内容</p>
</figcaption>
</figure>
</article>
<section>
<figure>
<img src="image2.jpg" alt="部分配图">
<figcaption>
<h2>部分标题</h2>
<p>部分内容</p>
</figcaption>
</figure>
</section>
<aside>
<figure>
<img src="image3.jpg" alt="侧栏配图">
<figcaption>
<h2>侧栏标题</h2>
<p>侧栏内容</p>
</figcaption>
</figure>
</aside>
<footer>
<p>版权信息</p>
</footer>
</body>
</html>
<head>
标签内的<style>
标签内添加样式,例如:<head>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #f4f4f4;
padding: 1rem;
}
nav ul {
padding: 0;
list-style-type: none;
}
nav li {
display: inline;
margin-right: 10px;
}
article {
margin: 20px;
}
h1, h2 {
font-weight: normal;
}
img {
max-width: 100%;
height: auto;
}
</style>
</head>
领取专属 10元无门槛券
手把手带您无忧上云