Skip to content

Commit 3ad8afc

Browse files
End section 2
1 parent d84a60a commit 3ad8afc

File tree

2 files changed

+34
-14
lines changed

2 files changed

+34
-14
lines changed

starter/02-HTML-Fundamentals/Challenge #2/index.html

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Shoes Store</title>
8+
</head>
9+
<body>
10+
<article>
11+
<h2>Converse Chuck Taylor All Star Low Top</h2>
12+
<img
13+
src="https://i.ibb.co/Jr7Wh1d/challenges.jpg"
14+
alt="Chuck Taylor All Star Shoe"
15+
width="250"
16+
height="250"
17+
/>
18+
<p><strong>$65.00</strong></p>
19+
<p>Free Shipping</p>
20+
<p>
21+
Ready to dress up or down,these classic canvas Chuck are an everyday
22+
wardrove staple.
23+
</p>
24+
<a href="https://www.converse.com">More information &rarr;</a>
25+
<h3>Product details</h3>
26+
<ul>
27+
<li>Lightweight, durable canvas sneaker</li>
28+
<li>Lightly padded footbed for added comfort</li>
29+
<li>Iconic Chuck Taylor snkle patch</li>
30+
</ul>
31+
<button>Add to cart</button>
32+
</article>
33+
</body>
34+
</html>

0 commit comments

Comments
 (0)