-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-challenge..html
58 lines (53 loc) · 1.85 KB
/
html-challenge..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
58
<!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>Document</title>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div class="container">
<article class="product-card">
<!-- <button class="sale-button">SALE</button> -->
<h2 class="product-title">Converse Chuck Taylor All Star Low Top</h2>
<img
class="product-image"
src="../img/challenges.jpg"
alt="Chuck Taylor"
width="250px"
height="250px"
/>
<div class="section1">
<p class="product-price">$65.00</p>
<p class="shipping">Free Shipping</p>
<p class="product-description">
Ready to dress up or down, these classic canvas Chucks are everyday
wardrobe staple.
</p>
<a class="more-info" href="https://www.google.com"
>More Information →</a
>
<div>
<div class="product-options black"></div>
<div class="product-options blue"></div>
<div class="product-options red"></div>
<div class="product-options orange"></div>
<div class="product-options green"></div>
<div class="product-options brown"></div>
</div>
</div>
<div class="section2">
<h3 class="product-detail-title">PRODUCT DETAILS</h3>
<ul class="product-list">
<li>Lightweight, durable canvas sneaker.</li>
<li>Lightly padded footbed for added comfort.</li>
<li>Iconic Chuck Taylor ankle patch.</li>
</ul>
</div>
<button class="cart-button">Add to Cart</button>
</article>
</div>
</body>
</html>