-
Notifications
You must be signed in to change notification settings - Fork 0
/
e-commerce.html
52 lines (51 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
<!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
class="pro-img"
src="img/challenges.jpg"
alt="shoe"
width="250"
height="250"
/>
<div class="product-info">
<p class="price"><strong>$65.00</strong></p>
<p class="shipping">Free Shipping</p>
<p class="pro-description">
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>
</div>
<div class="product-detail">
<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>
</div>
<button class="add-cart">Add to cart</button>
<p class="sale">Sale</p>
</article>
</div>
</body>
</html>