-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHobbies.html
54 lines (45 loc) · 1.73 KB
/
Hobbies.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Blogs</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="stylescss.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12 col-sm-12">
<nav class="topnav" id="myTopnav">
<img src=".\Resources\Mayur khatri.jpg" alt="displaypic">
<a href="index.html">Home</a>
<a href="Hobbies.html" class="head">Hobbies</a>
<a href="Blogs.html">Blogs</a>
<a href="Books.html">Favorite Books</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i id="menu" class="menu-accessibility"></i>
</a>
</nav>
</div>
</div>
</div>
<div>
<h1 class="hob">What I Love List- </h1>
<ul>
<li><h1>Building things and using existing things to build new ones.</h1></li>
<li><h1>Netflix, youtube knows my preferences(what to watch) better than me.</h1></li>
<li><h1>Writing poetries for a person I Love.</h1></li>
</ul>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>