html网上花店网页制作代码
时间: 2023-08-14 09:37:11 浏览: 352
以下是一个简单的 HTML 网上花店网页制作代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>网上花店</title>
<style>
/* CSS 样式表 */
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
font-size: 24px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.card {
width: 30%;
margin-bottom: 20px;
background-color: #fff;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
border-radius: 5px;
overflow: hidden;
}
.card img {
width: 100%;
height: auto;
object-fit: cover;
}
.card h2 {
font-size: 20px;
margin: 10px;
}
.card p {
font-size: 16px;
margin: 10px;
text-align: justify;
}
.card button {
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
margin: 10px;
cursor: pointer;
}
.card button:hover {
background-color: #555;
}
</style>
</head>
<body>
<header>
<h1>网上花店</h1>
<p>送花表爱意,让你我更亲近</p>
</header>
<div class="container">
<div class="card">
<img src="roses.jpg" alt="玫瑰花">
<h2>玫瑰花</h2>
<p>玫瑰花象征着爱情,是送给恋人或者配偶的最佳选择。</p>
<button>购买</button>
</div>
<div class="card">
<img src="tulips.jpg" alt="郁金香">
<h2>郁金香</h2>
<p>郁金香是荷兰的国花,也是祝福和幸福的象征。</p>
<button>购买</button>
</div>
<div class="card">
<img src="daisies.jpg" alt="菊花">
<h2>菊花</h2>
<p>菊花是秋季的代表花卉,也是祝福长寿和健康的象征。</p>
<button>购买</button>
</div>
</div>
</body>
</html>
```
这个示例包含一个页面标题、一个顶部导航栏、一个包含花卉信息的卡片容器和一些简单的 CSS 样式。你可以根据自己的需求和喜好进行修改和扩展。
阅读全文