-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpart_three_a.html
More file actions
42 lines (41 loc) · 1.23 KB
/
part_three_a.html
File metadata and controls
42 lines (41 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Part One</title>
</head>
<body>
<div>
<h3> Products Page</h3>
<div>
<ul class = "products_list">
<li>
<div class = "product">
<img alt = "product_one" src = "product_image1"></img>
<h3>Product Name</h3>
<p>Product Description</p>
</div>
</li>
<li>
<div class = "product">
<img alt = "product_two" src = "product_image2"></img>
<h3>Product Name</h3>
<p>Product Description</p>
</div>
</li>
<li>
<div class = "product">
<img alt = "product_two" src = "product_image2"></img>
<h3>Product Name</h3>
<p>Product Description</p>
</div>
</li>
<ul>
</div>
</div>
</body>
<!--Misspelled tag on Line 9, corrected from hh3 to h3
Incomplete tag originally on line 10, now 12, added a > to <li
Incomplete tag originally on line 22, now on line 29, added a > to </h3
Missing an opening <div> tag on line 7/8, added on line 8-->
<html>