以下是一个简单的传奇网站模板,你可以根据自己的需要进行修改:
HTML:
```html
传奇网站
```
CSS:
```css
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
text-shadow: 2px 2px #333;
}
nav ul {
list-style: none;
padding: 0;
}
nav li {
margin-right: 20px;
}
main {
margin-top: 50px;
}
section {
margin-bottom: 50px;
}
h2 {
margin-bottom: 20px;
}
p {
font-size: 16px;
line-height: 1.6;
}
a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: #333;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
text-shadow: 2px 2px #333;
}
```
该模板包括一个头部元素、导航栏、主要部分和一个底部元素。你可以根据自己的需要进行修改,例如添加标题、图像、CSS样式、JavaScript脚本等。