-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoursera.html
More file actions
45 lines (39 loc) · 1.17 KB
/
coursera.html
File metadata and controls
45 lines (39 loc) · 1.17 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
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Favorite Foods!!</title>
</head>
<body>
<h1>My Favorite Food :DD</h1>
<main>
<h2>Tier List</h2>
<a href="#1">Top 1.</a> <br>
<a href="#2">Top 2.</a> <br>
<a href="#3">Top 3.</a> <br>
<h3>There are 3 foods that I love the most!</h3>
<ol>
<li id="1">
Pho. <br>
<img src="images/pho.jpg" alt="Pho">
</li>
<li id="2">
Bun bo Hue. <br>
<img src="images/bunbohue.jpg" alt="Bun bo Hue">
</li>
<li id="3">
Com rang dua bo. <br>
<img src="images/comrang.jpg" alt="Com rang dua bo">
</li>
</ol>
<p>
Learn more about Vietnamese food on
<a href="https://en.wikipedia.org/wiki/Vietnamese_cuisine" target="_blank">
Wikipedia
</a>.
</p>
</main>
<footer> I love coursera. </footer>
</body>
</html>