以下是一个基本的酒业公司网站模板,您可以在此基础上进行修改和定制:
网站首页:
```
t
酒公司网站t
t
t
t
ttttt

tt
tt酒公司网站
tt
tt
tt
tt
```
CSS样式:
```
* {
tmargin: 0;
tpadding: 0;
tbox-sizing: border-box;
}
header {
tbackground-color: #333;
tcolor: #fff;
tpadding: 20px;
ttext-align: center;
}
.logo {
twidth: 100px;
theight: 100px;
tbackground-image: url("logo.png");
tbackground-size: cover;
tmargin-top: 20px;
}
.title {
ttext-align: center;
tfont-size: 28px;
tmargin-top: 40px;
}
main {
tdisplay: flex;
tflex-direction: column;
}
.product {
tflex: 1;
tmargin-bottom: 20px;
}
.service {
tflex: 1;
tmargin-bottom: 20px;
}
footer {
tbackground-color: #333;
tcolor: #fff;
tpadding: 20px;
ttext-align: center;
}
```
该模板包括一个头部导航、产品列表和服务列表,以及一个底部footer。您可以根据需要修改这些元素的大小、颜色、字体等,以适合您的网站需求。