-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe-commerce.html
41 lines (41 loc) · 1.52 KB
/
e-commerce.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>e-commerce</title>
<link rel="stylesheet" href="commerce.css" />
</head>
<body>
<div class="container">
<article class="product">
<h2 class="product-title">Converse Chuck Taylor All Star Low Top</h2>
<img src="images/challenges.jpg" alt="shoe" width="250" height="250" />
<p class="price"><strong>$65.00</strong></p>
<p>Free Shipping</p>
<p>
Ready to dress up or down, these classic canvas Chucks are an everyday
wardrope staple
</p>
<a class="more-info" href="#">More Information</a>
<div class="colors">
<div class="color"></div>
<div class="color color-blue"></div>
<div class="color color-red"></div>
<div class="color color-yellow"></div>
<div class="color color-green"></div>
<div class="color color-brown"></div>
</div>
<h3 class="detail-title">Product Details</h3>
<ul class="detail-list">
<li>Lightweight, durable canvas sneaker</li>
<li>Lightly padded footbed for added comfort</li>
<li>Iconic Chuck Taylor ancle patch</li>
</ul>
<button class="add-cart">Add to cart</button>
<p class="sale">Sale</p>
</article>
</div>
</body>
</html>