-
Notifications
You must be signed in to change notification settings - Fork 0
/
3. Anchor Elements.html
33 lines (32 loc) · 1.01 KB
/
3. Anchor Elements.html
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>
<title>My Top 5 Favourite Websites</title>
<style>
body {
font-family: Arial, sans-serif;
}
h1 {
font-size: 50px;
font-weight: bold;
}
ol {
font-size: 24px;
line-height: 2;
}
a {
color: blue; }
</style>
</head>
<body>
<h1>My top 5 Favourite Websites</h1>
<ol start="5">
<li><a href="https://www.producthunt.com" target="_blank">Product Hunt</a></li>
<li><a href="https://smash-the-walls.com" target="_blank">Smash the Walls</a></li>
<li><a href="https://www.nytimes.com/games/wordle/index.html" target="_blank">Wordle</a></li>
<li><a href="http://hackertyper.com/" target="_blank">Hacker Typer</a></li>
<li><a href="https://stellarium-web.org/" target="_blank">Stellarium</a></li>
</ol>
<footer style="text-align: center;">Tanvir Bin Faruk Ramim</footer>
</body>
</html>