-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blogs.html
52 lines (48 loc) · 2.2 KB
/
Blogs.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
<!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">Hobbies</a>
<a href="Blogs.html" class="head">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 class="container">
<div class="row">
<div class="col-lg-12 col-sm-12">
<h1 class="blogHeading">Here is the list of blogs - </h1>
<a href="https://strikingwork.blogspot.com/2018/03/the-law-of-belief.html" class="bloglink">THE LAW OF BELIEF</a>
<a href="https://strikingwork.blogspot.com/2018/12/work-efficiently-pomodoro-technique.html" class="bloglink">Work Efficiently: The Pomodoro Technique</a>
<a href="https://strikingwork.blogspot.com/2018/12/the-old-carpenter-how-not-to-build-life.html" class="bloglink">The Old Carpenter! How not to build a life</a>
<a href="https://strikingwork.blogspot.com/2020/01/the-magical-formula-to-deal-with-worry.html" class="bloglink">The magical formula to deal with worry situations</a>
</div>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>