建一个鲜花销售网站用html和css
时间: 2024-03-15 13:47:53 浏览: 140
好的,我可以为您提供一个基本的鲜花销售网站的 HTML 和 CSS 代码示例,包括主页、产品页面和联系页面。请注意,这只是一个基础模板,您可以根据自己的需求进行修改和定制。
HTML 代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>鲜花销售网站</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>鲜花销售网站</h1>
<nav>
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="products.html">产品</a></li>
<li><a href="contact.html">联系我们</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>欢迎来到我们的鲜花销售网站</h1>
<p>我们提供各种鲜花和花束,让您的生活更加美好。</p>
</div>
</section>
<section id="newsletter">
<div class="container">
<h2>订阅我们的邮件列表</h2>
<form>
<input type="email" placeholder="输入您的邮箱地址">
<button type="submit" class="button_1">订阅</button>
</form>
</div>
</section>
<section id="boxes">
<div class="container">
<div class="box">
<img src="img/box1.jpg">
<h3>玫瑰花束</h3>
<p>我们提供新鲜的玫瑰花束,适合各种场合。</p>
</div>
<div class="box">
<img src="img/box2.jpg">
<h3>康乃馨花束</h3>
<p>我们提供新鲜的康乃馨花束,适合各种场合。</p>
</div>
<div class="box">
<img src="img/box3.jpg">
<h3>郁金香花束</h3>
<p>我们提供新鲜的郁金香花束,适合各种场合。</p>
</div>
</div>
</section>
<footer>
<p>版权所有 © 2021 鲜花销售网站</p>
</footer>
</body>
</html>
```
CSS 代码:
```css
/* Reset 样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* 全局样式 */
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.6;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* 头部 */
header {
background-color: #333;
color: #fff;
padding: 20px;
}
header a {
color: #fff;
text-decoration: none;
}
header a:hover {
color: #ccc;
}
nav ul {
list-style: none;
display: inline-block;
float: right;
}
nav li {
display: inline-block;
margin-left: 20px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 18px;
}
nav a:hover {
color: #ccc;
}
/* Showcase 区域 */
#showcase {
background-image: url('../img/showcase.jpg');
background-size: cover;
background-position: center;
height: 400px;
text-align: center;
display: flex;
align-items: center;
}
#showcase h1 {
font-size: 60px;
margin-bottom: 20px;
}
#showcase p {
font-size: 24px;
}
/* Newsletter 区域 */
#newsletter {
background-color: #f4f4f4;
padding: 20px;
}
#newsletter h2 {
font-size: 24px;
margin-bottom: 20px;
}
#newsletter input[type="email"] {
padding: 10px;
width: 60%;
border: none;
border-radius: 5px;
margin-right: 10px;
}
.button_1 {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.button_1:hover {
background-color: #ccc;
color: #333;
}
/* Boxes 区域 */
#boxes {
margin-top: 40px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.box {
flex-basis: calc(33.33% - 20px);
background-color: #f4f4f4;
padding: 20px;
margin-bottom: 20px;
}
.box img {
width: 100%;
height: 200px;
object-fit: cover;
margin-bottom: 10px;
}
.box h3 {
font-size: 24px;
margin-bottom: 10px;
}
.box p {
font-size: 16px;
}
/* Footer */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
margin-top: 40px;
}
```
阅读全文