-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (17 loc) · 695 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (17 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<h1>My top 5 Favourite Websites</h1>
<!-- Write your code below -->
<ol>
<li><a href="https://itch.io">Itcho</a></li>
<li><a href="https://pt.pinterest.com">Pinterest</a></li>
<li><a href="https://www.youtube.com">Youtube</a></li>
<li><a href="https://github.com">GitHub</a></li>
<li><a href="https://www.linkedin.com">Linkedin</a></li>
</ol>
<h1>Extra Exercise</h1>
<ol start="5">
<li><a href="https://itch.io">Itcho</a></li>
<li><a href="https://pt.pinterest.com">Pinterest</a></li>
<li><a href="https://www.youtube.com">Youtube</a></li>
<li><a href="https://github.com">GitHub</a></li>
<li><a href="https://www.linkedin.com">Linkedin</a></li>
</ol>