-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHobbies.html
More file actions
46 lines (44 loc) · 1.52 KB
/
Hobbies.html
File metadata and controls
46 lines (44 loc) · 1.52 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
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Manufacturing+Consent&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap"
rel="stylesheet"
/>
</head>
<body id="third">
<div class="container">
<h1 class="head">My Favorite activities</h1>
<ul class="font">
<li>🎮Gaming</li>
<br />
<li>⚽Watching football</li>
<br />
<li>❤️Spending time with loved ones</li>
<br />
<li>😋Eating</li>
<br />
<li>🍿Watching movies</li>
<br />
<li>🏋️♀️Hitting the gym</li>
<br />
<li>🧘♂️Minding my business</li>
</ul>
<br><br><br>
<a class="floatleft" href="./Me.html"><button type="button">Previous Page</button></a>
<a class="floatright" href="./index.html"><button type="button">Home Page</button></a>
</div>
</body>
</html>