以下是一个简单的公告类网站模板,你可以根据自己的需要进行修改和定制。
```html
公告
信息
这里是一些有用的信息,可以在这里发布新闻、公告、联系我们等内容。
```
样式表:
```css
header {
background-color: #333;
color: white;
padding: 20px;
}
.logo {
width: 100px;
height: 100px;
background-image: url("logo.png");
background-size: cover;
margin-top: 10px;
}
.title {
text-align: center;
font-size: 28px;
margin-bottom: 20px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 10px;
}
nav a {
color: white;
text-decoration: none;
}
main {
margin-top: 20px;
}
section {
margin-bottom: 20px;
}
.alerts h2 {
font-size: 24px;
margin-bottom: 20px;
}
.alerts ul {
list-style: none;
margin: 0;
padding: 0;
}
.alerts li {
margin-bottom: 20px;
}
.alerts a {
color: white;
background-color: #f2f2f2;
border-radius: 5px;
padding: 5px 10px;
}
.info p {
font-size: 18px;
line-height: 1.5;
}
footer {
text-align: center;
font-size: 14px;
color: #333;
margin-top: 20px;
}
```