-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
115 lines (81 loc) · 4.33 KB
/
blog.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dheeraj Purohit | Blogs</title>
<link rel="apple-touch-icon" sizes="180x180" href="/jaggu.webp">
<link rel="icon" href="jaggu.webp" type="image/gif" sizes="16x16">
<link href="style.css" rel="stylesheet">
</head>
<body>
<nav class="navigation container sticky">
<div class="nav-brand">Dheeraj Purohit | Web Developer</div>
<ul class="unordered">
<li class="list-item-inline">
<a class="list-item" href="index.html">Home</a>
</li>
<li class="list-item-inline">
<a class="list-item" href="project.html">Projects</a>
</li>
<li class="list-item-inline">
<a class="list-item link-active" href="blog.html">Blogs</a>
</li>
</ul>
</nav>
<header class="header-project"><h1>Read My <span class="header-code">
<strong>Blogs</strong>
</span></h1>
</header>
<section class="blog-class">
<article class="container-center showcase">
<h2>Build your own chrome extension</h2>
<small>May, 2021</small>
<p>Let's Build a chrome extension using JavaScript, Html and CSS</p>
<a class="link primary-link" href="https://utkrshtdev.hashnode.dev/build-your-own-chrome-extension">Read more</a>
</article>
<article class="container-center showcase">
<h2>Changes Makes Big Difference</h2>
<small>June, 2019</small>
<p>Big succes comes with Big changes</p>
<a class="link primary-link" href="https://changeittomakeit.blogspot.com/2019/06/big-succes-comes-with-big-changes.html">Read more</a>
</article>
<article class="container-center showcase">
<h2>The Indian Yoga</h2>
<small>June, 2019</small>
<p>Bharat: the origin of Yog Vidya</p>
<a class="link primary-link" href="https://bharatiyayogvidya.blogspot.com/2019/06/the-indian-yoga-science-of-yoga-has-its.html">Read more</a>
</article>
<!--
<article class="container-center showcase">
<h2>Blog 4</h2>
<small>February, 2020</small>
<p>I write blogs and share my ideas, experience, advise on yoga, indian martial art forms and topics related to health and fitness. Hope you will find it helpful</p>
<a class="link primary-link" href="project.html">Read more</a>
</article>
<article class="container-center showcase">
<h2>Blog 5</h2>
<small>February, 2020</small>
<p>I write blogs and share my ideas, experience, advise on yoga, indian martial art forms and topics related to health and fitness. Hope you will find it helpful</p>
<a class="link primary-link" href="project.html">Read more</a>
</article>
-->
</section>
<footer class="footer">
<div class="footer-header">You can connect with me on </div>
<ul class="social-links">
<li class="list-item-inline"><a class="list-item"href="https://github.com/purohitdheeraj">
Github
</a></li>
<li class="list-item-inline"><a class="list-item" href="https://www.linkedin.com/in/dheeraj-purohit-79ba4a168">
LinkedIn
</a>
</li>
<li class="list-item-inline"><a class="list-item" href="https://twitter.com/the_indianyoga">
Twitter
</a></li>
</ul>
</footer>
</body>
</html>