书网站模板:书店网站模板

哆啦Ai流程自动化发布于:2023-05-10 17:36热度:637 ℃
点赞51收藏

以下是一个书网站模板的示例,可以根据自己的需要进行修改和定制:
```html




Book Website






Book Website


Our website is dedicated to providing you with the latest books and author information.







Books





About Us


We are a book publishing company that specializes in creating high-quality books for both young and old读者. Our team of experienced authors can help you with your book's writing, marketing, and出版 process.




Contact Us


If you have any questions about our services or your book, please do not hesitate to contact us. We are always here to help.






```
CSS:
```css
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.logo {
width: 30px;
height: 30px;
margin: 0 auto;
border-radius: 50%;
text-align: center;
font-size: 36px;
display: inline-block;
margin-top: 10px;
}
.header-text {
color: #fff;
font-size: 32px;
padding: 10px 20px;
}
nav ul {
list-style: none;
margin: 0;
}
nav li {
display: inline-block;
margin-right: 10px;
}
nav a {
color: #fff;
text-decoration: none;
display: inline-block;
margin-bottom: 5px;
}
main ul {
list-style: none;
margin: 0;
}
main li {
display: inline-block;
margin-right: 10px;
}
main li:last-child {
margin-right: 0;
}
section {
background-color: #f2f2f2;
padding: 20px;
text-align: center;
}
h2 {
margin-bottom: 20px;
}
section h2:last-child {
margin-bottom: 0;
}
.books {
margin-bottom: 30px;
}
.books li {
margin-bottom: 10px;
}
.books li:last-child {
margin-bottom: 0;
}
```