以下是一个简单的消息稿网站模板,可以根据自己的需要进行修改:
HTML结构:
```
t
消息稿网站模板t
t
t
t
t
t
tt这里是网站的主要内容
tt欢迎来到我们的网站,这里有最新的新闻、观点和视频。如果您有任何问题,请随时联系我们。
tt
```
CSS样式:
```
body {
tfont-family: Arial, sans-serif;
tbackground-color: #f2f2f2;
}
header {
tbackground-color: #007bff;
tcolor: #fff;
tpadding: 20px;
ttext-align: center;
}
nav {
tbackground-color: #fff;
tpadding: 10px;
tlist-style: none;
}
nav ul {
tdisplay: flex;
tflex-wrap: wrap;
tmargin: 0;
}
nav li {
tmargin-right: 10px;
}
nav a {
tcolor: #007bff;
ttext-decoration: none;
}
main {
tdisplay: flex;
tflex-wrap: wrap;
tjustify-content: space-between;
tmargin-bottom: 20px;
}
main h2 {
tfont-size: 28px;
tmargin-bottom: 20px;
}
main p {
tfont-size: 16px;
tline-height: 1.5;
tmargin-bottom: 20px;
}
footer {
tbackground-color: #007bff;
tcolor: #fff;
tpadding: 20px;
ttext-align: center;
}
```