请给我一段html的代码,要求使用Adobe Dreamweaver制作“电商节活动”的网站特价产品商品页。
时间: 2024-03-24 20:37:53 浏览: 53
好的,以下是一段符合要求的 HTML 代码,使用了 Adobe Dreamweaver 制作的“电商节活动”特价商品页面:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>电商节活动 - 特价商品</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>电商节活动</h1>
<nav>
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="about.html">关于我们</a></li>
<li><a href="products.html">产品列表</a></li>
<li><a href="contact.html">联系我们</a></li>
</ul>
</nav>
</header>
<main>
<h2>特价商品</h2>
<div class="product">
<img src="product1.jpg" alt="特价商品1">
<h3>特价商品1</h3>
<p>原价:$50,现价:$30</p>
<a href="#" class="btn">购买</a>
</div>
<div class="product">
<img src="product2.jpg" alt="特价商品2">
<h3>特价商品2</h3>
<p>原价:$80,现价:$40</p>
<a href="#" class="btn">购买</a>
</div>
<div class="product">
<img src="product3.jpg" alt="特价商品3">
<h3>特价商品3</h3>
<p>原价:$100,现价:$50</p>
<a href="#" class="btn">购买</a>
</div>
</main>
<footer>
<p>© 2021 电商节活动. All Rights Reserved.</p>
</footer>
</body>
</html>
```
同时,需要在同级目录下创建一个名为 `styles.css` 的 CSS 文件,并添加以下样式:
```css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
h1 {
margin: 0;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
main {
padding: 20px;
}
h2 {
margin-top: 0;
}
.product {
display: inline-block;
margin-right: 20px;
vertical-align: top;
}
.product img {
width: 200px;
height: 200px;
}
.product h3 {
margin-top: 10px;
margin-bottom: 5px;
}
.product p {
margin: 0;
}
.btn {
display: inline-block;
background-color: #333;
color: #fff;
padding: 5px 10px;
text-decoration: none;
border-radius: 5px;
}
```
阅读全文