-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChucks.html
51 lines (47 loc) · 1.61 KB
/
Chucks.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="css/chucks.css">
</head>
<body>
<article class="product">
<h2 class="product-title">Converse Chuck Taylor All Star Low Top</h2>
<!-- <div class="container clearfix">-->
<img
src="https://i.ibb.co/Jr7Wh1d/challenges.jpg"
alt="ChuckTs All Star Shoe"
height="250"
class="product-img"
/>
<div class="product-info">
<div class="product-price">
<p class="price"><strong>$65.40</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 Chucks are ready.</p>
<a class="more-info" href="#">More info →</a>
<div class="product-colors">
<div class="color"></div>
<div class="color blue"></div>
<div class="color red"></div>
<div class="color yellow"></div>
<div class="color green"></div>
<div class="color brown"></div>
</div>
</div>
<div class="product-details">
<h3 class="product-details-header">Product Details</h3>
<ul class="details-ul">
<li>Lightweight, durable</li>
<li>Lightly padded footbed</li>
<li>Iconic Chuck T ankle pouch</li>
</ul>
</div>
<!-- </div>-->
<button class="add-cart">Add to cart</button>
</article>
</body>
</html>