使用HTml与css制作一个二次元网页
时间: 2024-02-13 07:06:09 浏览: 118
以下是一个简单的二次元风格的网页示例,你可以参考其中的HTML和CSS代码:
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>二次元网页</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>二次元网页</h1>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">分类</a></li>
<li><a href="#">排行榜</a></li>
<li><a href="#">关于</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>最新更新</h2>
<ul>
<li>
<a href="#">
<img src="img/1.jpg" alt="">
<p>标题1</p>
</a>
</li>
<li>
<a href="#">
<img src="img/2.jpg" alt="">
<p>标题2</p>
</a>
</li>
<li>
<a href="#">
<img src="img/3.jpg" alt="">
<p>标题3</p>
</a>
</li>
</ul>
</section>
<aside>
<h2>分类</h2>
<ul>
<li><a href="#">动漫</a></li>
<li><a href="#">漫画</a></li>
<li><a href="#">游戏</a></li>
<li><a href="#">虚拟偶像</a></li>
</ul>
</aside>
</main>
<footer>
<p>©2021 二次元网页</p>
</footer>
</body>
</html>
```
CSS代码:
```css
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}
header {
background-color: #f5f5f5;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
font-size: 32px;
font-weight: bold;
}
nav ul {
list-style: none;
display: flex;
align-items: center;
}
nav li {
margin-left: 20px;
}
nav a {
text-decoration: none;
color: #333;
}
nav a:hover {
color: #f90;
}
main {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
section {
width: 70%;
}
section h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
section ul {
list-style: none;
display: flex;
justify-content: space-between;
}
section li {
width: 30%;
}
section img {
width: 100%;
}
section p {
margin-top: 10px;
text-align: center;
}
aside {
width: 30%;
background-color: #f5f5f5;
padding: 20px;
}
aside h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
aside ul {
list-style: none;
}
aside li {
margin-bottom: 10px;
}
aside a {
text-decoration: none;
color: #333;
}
aside a:hover {
color: #f90;
}
footer {
background-color: #ccc;
padding: 20px;
text-align: center;
}
```
这个网页包括了一个头部、一个主要内容区和一个底部,头部包含网站名称和导航菜单,主要内容区包含最新更新和分类两个部分,底部包含版权信息。你可以根据自己的需要修改HTML和CSS代码,制作出你自己的二次元网页。
阅读全文