-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobby.html
More file actions
40 lines (36 loc) · 1.1 KB
/
Copy pathhobby.html
File metadata and controls
40 lines (36 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>My Hobbies</title>
</head>
<body>
<header>
<nav>
<h1>Felipe Barbosa</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="html-cheatsheet.html">HTML Cheatsheet</a></li>
<li><a href="css-cheatsheet.html">CSS Cheatsheet</a></li>
</ul>
</nav>
</header>
<main>
<section class="dota">
<img src="assets/hobbie_dota2.png" alt="Dota 2">
<em>Dota 2</em>
</section>
<section class="drums">
<img src="assets/hobbie_drum.jpeg" alt="Drums">
<em>Playing Drums</em>
</section>
</main>
<footer>
<p>© 2024 - Made by <a href="https://github.com/Barba-rossa">Barba-rossa</a></p>
</footer>
<script src="js/script.js"></script>
</body>
</html>