-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobbies.html
More file actions
37 lines (33 loc) · 998 Bytes
/
Copy pathhobbies.html
File metadata and controls
37 lines (33 loc) · 998 Bytes
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
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="home.css">
<title>
Hobbies
</title>
<body>
<div id="fields" class="sidenav">
<a href="javascript:void(0)" class ="closebtn" onclick="closeNav()">×</a>
<a href="home.html">Home</a>
<a href="qual.html">Qualifications</a>
<a href="voc.html">Vocational skills</a>
<a href="hobbies.html">Hobbies</a>
<a href="ling.html">Linguistic Potential</a>
<a href="books.html">Books*</a>
<a href="vent.html">Ongoing ventures</a>
</div>
<!--Burger Menu -->
<span style="font-size:40px;cursor:pointer;" onclick="openNav()">☰ </span>
<script>
function openNav() {
document.getElementById("fields").style.display = "block";
}
function closeNav() {
document.getElementById("fields").style.display = "none";
}
</script>
<div class="container">
<h2>My Hobbies</h2>
</div>
</body>
<footer>Copyright@2021.<img src="rakup.png"></footer>
</html>