-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.62 KB
/
index.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
<!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" />
<link rel="stylesheet" href="./style/output.css" />
<title>Document</title>
</head>
<body>
<div class="container">
<article class="prod">
<h1 class="heading-primary">Converse Chuck Taylor All Star Low Top</h1>
<img src="./images/challenges.jpg" alt="#" class="prod__image" />
<p class="prod__price">$65.00</p>
<p class="prod__shipping">Free shipping</p>
<p class="prod__desc">
Ready to dress up or down, these classic canvas Chucks are an everyday
wardrobe staple.
</p>
<a href="#" class="prod__moreinfo">More information →</a>
<ul class="prod__colors">
<li class="prod__color prod__color--1"></li>
<li class="prod__color prod__color--2"></li>
<li class="prod__color prod__color--3"></li>
<li class="prod__color prod__color--4"></li>
<li class="prod__color prod__color--5"></li>
<li class="prod__color prod__color--6"></li>
</ul>
<h2 class="heading-secondary u-m-b-s">Product details</h2>
<ul class="prod__list">
<li class="prod__item">Lightweight, durable canvas sneaker</li>
<li class="prod__item">Lightly padded footbed for added comfort</li>
<li class="prod__item">Iconic Chuck Taylor ankle patch</li>
</ul>
<button class="prod__btn">Add to card</button>
</article>
</div>
</body>
</html>