-
Notifications
You must be signed in to change notification settings - Fork 0
/
chair-2.html
57 lines (54 loc) · 1.69 KB
/
chair-2.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
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF8" />
<title>Section 2 - Challenge #2</title>
<link rel="stylesheet" href="stylee.css" />
</head>
<body>
<article class="product">
<h2 class="product-title">The Worker Bee</h2>
<!-- <div class="container"> -->
<img
src="chair-2.jpg"
alt="Chuck Taylor All Star Shoe"
height="250"
width="250"
class="product-img"
/>
<div class="product-info">
<div class="product-price">
<p class="price"><strong>525€</strong></p>
<p class="shipping">Free shipping</p>
</div>
<p class="sale">Sale</p>
<p class="product-description">
Ready to dress up or down, these classic canvas Chucks are an everyday
wardrobe staple.
</p>
<a href="#" target="_blank" class="more-info"
>Colours Available →</a
>
<div class="product-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-details">
<h3 class="details-title">Product details</h3>
<ul class="details-list">
<li>Work</li>
<li>Comfortable for 8h</li>
<li>Vegan leather</li>
<li>Weights 22 kg</li>
</ul>
</div>
<!-- </div> -->
<button class="add-cart">Add to cart</button>
</article>
</body>
</html>