写一个淘宝首页的html
时间: 2024-01-05 12:08:32 浏览: 80
<!DOCTYPE html>
<html>
<head>
<title>淘宝首页</title>
<meta charset="utf-8">
<style>
/* 样式表 */
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
header {
background-color: #ff5000;
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 30px;
}
header img {
height: 40px;
}
nav {
background-color: #fff;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
}
nav ul {
display: flex;
}
nav li {
margin: 0 20px;
}
nav a {
color: #333;
text-decoration: none;
}
section {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 30px;
}
.item {
background-color: #fff;
width: 200px;
height: 250px;
margin: 20px;
box-shadow: 0 0 5px #ccc;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.item img {
width: 120px;
height: 120px;
margin-bottom: 20px;
}
.item h3 {
font-size: 16px;
margin-bottom: 10px;
}
.item p {
font-size: 14px;
color: #999;
margin-bottom: 10px;
}
.item button {
background-color: #ff5000;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
footer {
background-color: #eee;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<img src="https://img.alicdn.com/tfs/TB1cLJQRFXXXXXMaXXXXXXXXXXX-800-800.png">
<input type="text" placeholder="搜索宝贝,店铺,资讯">
<button>搜索</button>
</header>
<nav>
<ul>
<li><a href="#">女装</a></li>
<li><a href="#">男装</a></li>
<li><a href="#">鞋包配饰</a></li>
<li><a href="#">化妆品</a></li>
<li><a href="#">数码家电</a></li>
<li><a href="#">家居家装</a></li>
<li><a href="#">母婴</a></li>
<li><a href="#">食品</a></li>
<li><a href="#">运动户外</a></li>
<li><a href="#">汽车用品</a></li>
</ul>
</nav>
<section>
<div class="item">
<img src="https://img.alicdn.com/tfs/TB1V7fyXjDpK1RjSZFrXXa78VXa-150-150.png">
<h3>商品名称</h3>
<p>商品描述</p>
<button>立即购买</button>
</div>
<div class="item">
<img src="https://img.alicdn.com/tfs/TB1V7fyXjDpK1RjSZFrXXa78VXa-150-150.png">
<h3>商品名称</h3>
<p>商品描述</p>
<button>立即购买</button>
</div>
<div class="item">
<img src="https://img.alicdn.com/tfs/TB1V7fyXjDpK1RjSZFrXXa78VXa-150-150.png">
<h3>商品名称</h3>
<p>商品描述</p>
<button>立即购买</button>
</div>
<div class="item">
<img src="https://img.alicdn.com/tfs/TB1V7fyXjDpK1RjSZFrXXa78VXa-150-150.png">
<h3>商品名称</h3>
<p>商品描述</p>
<button>立即购买</button>
</div>
<div class="item">
<img src="https://img.alicdn.com/tfs/TB1V7fyXjDpK1RjSZFrXXa78VXa-150-150.png">
<h3>商品名称</h3>
<p>商品描述</p>
<button>立即购买</button>
</div>
<div class="item">
<img src="https://img.alicdn.com/tfs/TB1V7fyXjDpK1RjSZFrXXa78VXa-150-150.png">
<h3>商品名称</h3>
<p>商品描述</p>
<button>立即购买</button>
</div>
</section>
<footer>
© 2021 淘宝网 版权所有
</footer>
</body>
</html>
阅读全文