花店只能推荐页面html和css
时间: 2023-09-20 13:04:34 浏览: 97
以下是一个花店智能推荐页面的HTML和CSS代码示例,可以让页面看起来更美观和吸引人:
HTML代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>花店智能推荐页面</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>花店智能推荐页面</h1>
</header>
<main>
<section>
<h2>花卉推荐</h2>
<p>以下是我们为您推荐的花卉产品:</p>
<ul>
<li>
<h3>玫瑰</h3>
<img src="rose.jpg" alt="玫瑰">
<p>价格:$20</p>
<button>添加到购物车</button>
</li>
<li>
<h3>百合</h3>
<img src="lily.jpg" alt="百合">
<p>价格:$18</p>
<button>添加到购物车</button>
</li>
<li>
<h3>郁金香</h3>
<img src="tulip.jpg" alt="郁金香">
<p>价格:$25</p>
<button>添加到购物车</button>
</li>
</ul>
</section>
<section>
<h2>花卉搜索</h2>
<form>
<label for="search">搜索花卉:</label>
<input type="text" id="search" name="search">
<button>搜索</button>
</form>
</section>
</main>
<footer>
<p>版权所有 © 2021 花店智能推荐页面</p>
</footer>
</body>
</html>
```
CSS代码:
```css
/* 全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
line-height: 1.5;
}
/* 头部样式 */
header {
background-color: #333;
color: #fff;
padding: 20px;
}
header h1 {
font-size: 2rem;
text-align: center;
}
/* 主体样式 */
main {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
section {
flex-basis: 45%;
margin-bottom: 40px;
}
h2 {
font-size: 1.5rem;
margin-bottom: 10px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
li img {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
li h3 {
font-size: 1.2rem;
margin-bottom: 10px;
}
p {
font-size: 1rem;
margin-bottom: 10px;
}
button {
background-color: #4CAF50;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.3s ease-in-out;
}
button:hover {
background-color: #3e8e41;
}
/* 底部样式 */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
```
这个示例中,我们使用CSS样式表为页面添加了样式和布局。我们使用了Flexbox布局,使页面的章节可以自动适应屏幕大小。我们还添加了一些按钮和悬停效果,以增强页面的交互性和易用性。您可以根据您的需要修改样式和布局。
阅读全文