美食文化网站模板:美食网站设计模板

哆啦Ai流程自动化发布于:2023-05-05 15:47热度:381 ℃
点赞16收藏

以下是一个美食文化网站模板的基本框架,可以根据需要进行修改和定制:
```html




美食文化网站





美食文化网站






更多信息


关于我们

联系我们









```
CSS样式表:
```css
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.logo img {
width: 100%;
height: auto;
}
.title {
text-align: center;
font-size: 36px;
margin-bottom: 20px;
}
nav ul {
list-style: none;
margin: 0;
}
nav li {
margin-right: 20px;
}
nav a {
color: white;
text-decoration: none;
display: block;
padding: 10px;
}
main {
margin-top: 20px;
}
section {
margin-bottom: 30px;
}
.menu h2 {
margin-bottom: 10px;
font-size: 24px;
}
.menu ul {
margin-bottom: 0;
padding: 0;
}
.menu li {
display: inline-block;
margin-right: 20px;
}
.menu a {
color: #fff;
text-decoration: none;
margin-right: 10px;
}
.info p {
font-size: 18px;
margin-bottom: 20px;
}
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
```