以下是一个简单的文章类网站模板,你可以根据自己的需要进行修改和定制。
```
t
t
文章列表t
t
t
ttttt

tt
tt文章列表
tt
t
tt
tt
tt
tt
```
CSS样式表:
```
* {
tbox-sizing: border-box;
}
body {
tfont-family: Arial, sans-serif;
tbackground-color: #f7f7f7;
}
header {
tbackground-color: #333;
tcolor: #fff;
tpadding: 20px;
tdisplay: flex;
tjustify-content: center;
talign-items: center;
}
.logo img {
twidth: 100%;
}
.title {
ttext-align: center;
tfont-size: 36px;
tmargin-bottom: 20px;
}
nav ul {
tlist-style: none;
tpadding: 0;
}
nav li {
tmargin-bottom: 20px;
}
nav a {
tcolor: #fff;
ttext-decoration: none;
}
main > section {
tmargin-bottom: 20px;
}
h1 {
tmargin-bottom: 30px;
}
p {
tfont-size: 18px;
tline-height: 1.5;
}
footer {
ttext-align: center;
tfont-size: 14px;
tcolor: #333;
tpadding: 20px;
}
```