画册标题网站模板-画册logo

哆啦Ai流程自动化发布于:2023-05-19 00:56热度:418 ℃
点赞36收藏

以下是一个基本的画册标题网站模板,您可以根据需要进行修改:
HTML结构:
```



画册标题





画册标题






画册内容





画册照片







```
CSS样式:
```
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
font-size: 36px;
margin-bottom: 30px;
}
nav ul {
list-style: none;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 10px;
}
nav a {
color: #fff;
text-decoration: none;
}
main {
display: flex;
flex-direction: column;
align-items: center;
}
section {
flex: 1;
margin-bottom: 20px;
}
h2 {
font-size: 24px;
margin-bottom: 20px;
}
ul {
margin: 0;
padding: 0;
}
li {
display: inline-block;
margin-right: 10px;
}
```
这个模板包括一个头部区域、一个主区域和一个照片区域。头部区域包含一个标题和一些导航元素,主区域包含一个表格和一个列表,照片区域包含一个表格和一个列表。您可以根据需要修改样式和布局来适应您的网站。