以下是一个阅读类网站模板的设计,可以根据需要进行修改和定制:
```html
阅读类网站模板
```
CSS样式表:
```css
header {
background-color: #333;
color: #fff;
padding: 20px;
border-radius: 10px;
}
.logo {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
font-size: 30px;
font-weight: bold;
}
.title {
text-align: center;
margin-bottom: 20px;
}
nav ul {
list-style: none;
margin: 0;
}
nav li {
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}
main {
display: flex;
flex-direction: column;
}
section {
margin-bottom: 20px;
}
h1 {
margin-bottom: 10px;
font-size: 24px;
}
p {
font-size: 18px;
}
.contact {
margin-bottom: 20px;
}
```