以下是一个简单的HTML5游戏网站模板,你可以根据自己的需要进行修改和定制。
```html
游戏网站
```
CSS:
```css
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
header {
background-color: #1a1a1a;
padding: 20px;
text-align: center;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
nav ul {
list-style: none;
margin: 0;
}
nav li {
margin-right: 10px;
}
main {
display: flex;
flex-wrap: wrap;
}
section {
flex: 1;
margin-bottom: 20px;
}
.游戏中心 h2 {
margin-bottom: 10px;
}
.游戏中心 ul {
margin-bottom: 20px;
}
.游戏中心 li {
margin-bottom: 5px;
}
.游戏中心 a {
color: white;
text-decoration: none;
}
.游戏中心 a:hover {
background-color: #0099cc;
}
.游戏列表 h2 {
margin-bottom: 10px;
}
.游戏列表 ul {
margin-bottom: 20px;
}
.游戏列表 li {
margin-bottom: 5px;
}
.游戏列表 a {
color: white;
text-decoration: none;
}
.游戏列表 a:hover {
background-color: #0099cc;
}
.游戏下载 h2 {
margin-bottom: 10px;
}
.游戏下载 ul {
margin-bottom: 20px;
}
.游戏下载 li {
margin-bottom: 5px;
}
.游戏下载 a {
color: white;
text-decoration: none;
}
footer {
background-color: #1a1a1a;
padding: 20px;
text-align: center;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
```