-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpart_two_b.html
More file actions
33 lines (33 loc) · 816 Bytes
/
part_two_b.html
File metadata and controls
33 lines (33 loc) · 816 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Part One</title>
</head>
<body>
<div>
<ul class="Menu">
<li>Option One</li>
<li>Option Two</li>
<li>Option Three</li>
<li>Option Four</li>
</ul>
</div>
<div>
<div class="card">
<img alt="content one" src="content_image"/>
</div>
<div class="card">
<img alt="content one" src="content_image2"/>
</div>
<div class="card">
<img alt="content one" src="content_image3"/>
</div>
</div>
<!--Added an opening tag for the third item of the unordered list.
I added a closing tag for the third div.
I added a > to properly close the closing tag of the first div.
I added a > to properly close the opening tag of the fourth div.
I added a / to the closing tag html.-->
</body>
</html>