html服装网页代码
时间: 2024-01-05 12:20:54 浏览: 115
以下是一个简单的HTML服装网页的代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>服装网页</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1 {
text-align: center;
color: #333333;
}
.product {
width: 200px;
margin: 20px;
padding: 10px;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 5px;
float: left;
}
.product img {
width: 100%;
height: auto;
}
.product h2 {
font-size: 18px;
color: #333333;
margin-top: 10px;
}
.product p {
font-size: 14px;
color: #666666;
}
</style>
</head>
<body>
<h1>服装网页</h1>
<div class="product">
<img src="dress1.jpg" alt="Dress 1">
<h2>时尚连衣裙</h2>
<p>价格:$50</p>
</div>
<div class="product">
<img src="shirt1.jpg" alt="Shirt 1">
<h2>休闲衬衫</h2>
<p>价格:$30</p>
</div>
<div class="product">
<img src="pants1.jpg" alt="Pants 1">
<h2>修身裤子</h2>
<p>价格:$40</p>
</div>
</body>
</html>
```
这段代码创建了一个简单的服装网页,包含了三个产品的展示。每个产品都有一张图片、一个标题和一个价格。页面使用了CSS样式来设置字体、背景颜色、边框等。你可以根据需要修改图片和文字内容来适应你的服装网页。
阅读全文