用html+css写一个购物系统前端页面
时间: 2023-12-29 15:46:36 浏览: 148
很高兴为您提供帮助,但是购物系统前端页面涉及到多个页面和功能模块,需要根据具体的需求进行设计和开发。以下是一个简单的购物页面示例,仅供参考:
HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>购物系统</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>购物系统</h1>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">商品列表</a></li>
<li><a href="#">购物车</a></li>
<li><a href="#">我的订单</a></li>
</ul>
</div>
</header>
<section class="banner">
<div class="container">
<h2>最新促销活动</h2>
<p>限时优惠,抢购赚大钱</p>
<a href="#" class="btn">立即抢购</a>
</div>
</section>
<section class="products">
<div class="container">
<h2>热门商品</h2>
<ul>
<li>
<img src="product1.jpg" alt="商品1">
<h3>商品1</h3>
<p>价格:$99.99</p>
<a href="#" class="btn">加入购物车</a>
</li>
<li>
<img src="product2.jpg" alt="商品2">
<h3>商品2</h3>
<p>价格:$199.99</p>
<a href="#" class="btn">加入购物车</a>
</li>
<li>
<img src="product3.jpg" alt="商品3">
<h3>商品3</h3>
<p>价格:$299.99</p>
<a href="#" class="btn">加入购物车</a>
</li>
</ul>
</div>
</section>
<footer>
<div class="container">
<p>版权所有 © 2021 购物系统</p>
</div>
</footer>
</body>
</html>
```
CSS代码:
```
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background-color: #333;
color: #fff;
padding: 20px 0;
}
header h1 {
float: left;
font-size: 28px;
}
header ul {
float: right;
list-style: none;
}
header ul li {
display: inline-block;
margin-left: 20px;
}
header ul li a {
color: #fff;
text-decoration: none;
}
.banner {
background-image: url(banner.jpg);
background-size: cover;
background-position: center;
padding: 100px 0;
text-align: center;
}
.banner h2 {
font-size: 36px;
margin-bottom: 20px;
}
.banner p {
font-size: 24px;
margin-bottom: 40px;
}
.btn {
display: inline-block;
background-color: #f00;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
}
.products {
padding: 100px 0;
text-align: center;
}
.products h2 {
font-size: 36px;
margin-bottom: 20px;
}
.products ul {
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.products li {
margin: 30px;
}
.products img {
width: 300px;
height: 300px;
object-fit: cover;
}
.products h3 {
font-size: 24px;
margin-bottom: 10px;
}
.products p {
font-size: 18px;
margin-bottom: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
```
该示例包括了购物系统的首页、商品列表和底部版权信息部分。您可以根据自己的需求进行修改和扩展。
阅读全文