以下是一个简单的内容网站模板,你可以根据需要进行修改:
HTML结构:
```html
My Website
About Us
Our company is a leading provider of digital marketing services. We specialize in helping businesses of all sizes create a successful online presence.
Contact Us
If you have any questions or would like to discuss how we can help your business, please don't hesitate to contact us.
```
CSS结构:
```css
/* 定义头部样式 */
header {
background-color: #333;
color: #fff;
padding: 20px;
border-radius: 10px;
text-align: center;
}
/* 定义导航栏样式 */
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 10px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 16px;
}
/* 定义主体样式 */
main {
background-color: #fff;
padding: 20px;
}
section {
display: flex;
flex-direction: column;
align-items: center;
}
h2 {
margin-bottom: 20px;
}
p {
margin-bottom: 20px;
}
```
这个模板包括一个头部区域、一个导航栏、三个主体区域和一个footer区域。CSS样式定义了页面的头部、导航栏和主体区域的样式,以及页面的底栏样式。你可以根据需要修改这些样式,以实现你所需的效果。