-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
42 lines (41 loc) · 1.25 KB
/
blog.html
File metadata and controls
42 lines (41 loc) · 1.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/blog.css" />
<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>Blog</title>
</head>
<body>
<article class="container">
<div class="top-head">
<h1>Converse Chuck Taylor All Star Low Top</h1>
</div>
<img
class="image"
src="img/challenges.jpg"
alt="Product"
height="200px"
width="200px"
/>
<p class="price"><strong>Price: $65.00</strong></p>
<p class="shipping">Fast and Free shipping</p>
<p class="bio">
Ready to dress up or down, these classic canvas Chucks are an everyday
wardrobe staple.
</p>
<a class="link" href="#">More information →</a>
<h3 class="product">Product details</h3>
<div class="list">
<ul>
<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="card">Add Card</button> <br />
<button class="buy">Buy</button>
</article>
</body>
</html>