-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobbies.html
More file actions
41 lines (32 loc) · 1.08 KB
/
hobbies.html
File metadata and controls
41 lines (32 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webfolio</title>
<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=Audiowide&family=Kenia&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="flex">
<h1>Hobbies</h1>
<a href="/games">Games</a>
<a href="/languages">Languages</a>
<a href="/books">Books</a>
<a href="/">Homepage</a>
</nav>
<ul>
<li>Coding<br>
<img src="coding_image.png" alt="coding picture" height="150px">
</li>
<li>reading<br>
<img src="A_Darker_Shade_of_Magic.jpg" alt="a darker shade of magic book" height="150px">
</li>
<li>jui-juitsu<br>
<img src="juijutsu.webp" alt="image of juijutsu" height="100px">
</li>
</ul>
</body>
</html>