-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
62 lines (56 loc) · 2.35 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
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dheeraj Malik</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">Dheeraj Malik</div>
<ul style="text-align:center" class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link link-active" href="/">home</a>
</li>
<li class="list-item-inline">
<a class="link" href="projects.html">projects</a>
</li>
<li class="list-item-inline">
<a class="link" href="blogs.html">blogs</a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="/images/project.svg" />
<h1 class="hero-heading">Dummy Blog <span class="heading-inverted"> </span></h1>
</header>
<section class="section ow">
<ul class="list-non-bullet">
<li>
<div class="container container-center ">
<h3>
<a class="link link-secondary" href="https://dheerajmalik.hashnode.dev/csscascading-style-sheets-understanding-cascade">Understanding cascading in CSS</a><p> - Explaining why your styles are not getting applied and from where you are getting those hidden styles 😉 </p>
</h3>
</div>
</li>
<hr>
<li>
<div class="container container-center ">
<h3>
<a class="link link-secondary" href="js_internals_blog.html">JS Internal </a><p> - Explaining what happens under the hood when JS is executed</p>
</h3>
</div>
</li>
<hr>
<li>
<div class="container container-center padding-md">
<h3>
<a class="link link-secondary" href="dummy.html">Dummy Blog</a><p> - Some lorem ipsum text till the time I am working on my blogs</p>
</h3>
</div>
</li>
</ul>
</section>
</body>