html css网页制作成品黑执事
时间: 2024-12-25 13:20:22 浏览: 7
### 黑执事主题网页成品示例
#### 页面结构规划
为了创建一个黑执事主题的网页,页面可以分为几个主要部分:头部导航栏、主要内容区以及页脚。这种分块布局有助于更好地管理不同区域的内容和样式[^1]。
```html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>黑执事官方网站</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>欢迎来到《黑执事》的世界</h1>
<nav>
<ul>
<li><a href="#about">关于作品</a></li>
<li><a href="#characters">角色介绍</a></li>
<li><a href="#gallery">图库展示</a></li>
<li><a href="#contact">联系我们</a></li>
</ul>
</nav>
</header>
<main>
<!-- 关于作品 -->
<section id="about">
<h2>关于《黑执事》</h2>
<p>这是一部由日本漫画家枢梁创作的人气动漫...</p>
</section>
<!-- 角色介绍 -->
<section id="characters">
<h2>重要人物</h2>
<div class="character-list">
<article>
<img src="./images/sebastian.jpg" alt="塞巴斯蒂安·米卡利斯">
<figcaption>塞巴斯蒂安·米卡利斯</figcaption>
</article>
<article>
<img src="./images/ciel.jpg" alt="夏尔·凡多姆海威">
<figcaption>夏尔·凡多姆海威</figcaption>
</article>
</div>
</section>
<!-- 图库展示 -->
<section id="gallery">
<h2>精彩瞬间</h2>
<figure>
<img src="./images/gallery-image-1.png" alt="">
<figcaption>描述图片内容</figcaption>
</figure>
</section>
<!-- 联系我们 -->
<footer id="contact">
<form action="#">
<input type="text" placeholder="您的姓名...">
<textarea name="" id="" cols="30" rows="10"></textarea>
<button type="submit">发送消息</button>
</form>
</footer>
</main>
<footer>
<small>© 2024 Black Butler Official Website | All Rights Reserved.</small>
</footer>
</body>
</html>
```
#### 样式定义
对于上述HTML结构中的各个组件,可以通过CSS来设置具体的外观效果:
```css
/* styles.css */
* {
margin: 0;
padding: 0;
}
body, header, main, footer {
font-family: Arial, sans-serif;
}
header h1 {
text-align: center;
color: #fff;
background-color: #2c3e50;
padding: .7em;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: space-around;
background-color: #34495e;
}
nav a {
color: white;
text-decoration: none;
padding: .5em 1em;
}
nav a:hover {
background-color: rgba(255, 255, 255, .2);
}
.character-list article img,
.gallery figure img{
width: 100%;
height: auto;
}
```
通过这种方式,不仅能够实现美观大方的设计风格,同时也遵循了良好的编码实践原则——即先构建清晰合理的DOM树形结构,然后再逐步细化每一个模块的具体表现形式。
阅读全文