怪物猎人网站模板可以根据具体需求进行定制,下面是一个简单的怪物猎人网站模板示例,供您参考:
```
怪物猎人网站
怪物猎人世界
欢迎来到怪物猎人世界!
游戏介绍
怪物猎人是一款经典的角色扮演游戏,以狩猎怪物为主要游戏玩法。
游戏下载
您可以通过各大游戏平台下载怪物猎人游戏。
联系我们
我们的联系方式如下:联系我们。感谢您的支持!
```
CSS样式表:
```
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav ul {
list-style: none;
margin: 0;
}
nav li {
display: inline-block;
margin-right: 10px;
}
nav a {
color: #fff;
text-decoration: none;
}
main {
margin-top: 50px;
}
section {
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
margin-bottom: 20px;
color: #333;
}
p {
margin-bottom: 20px;
}
button {
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #333;
}
```