-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.html
More file actions
94 lines (76 loc) · 3 KB
/
Copy pathblogs.html
File metadata and controls
94 lines (76 loc) · 3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>blogs | portfolio</title>
<link rel="stylesheet" href="lib/styles.css"/>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">IAmDeveloper</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link" 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 link-active" href="/blogs.html">Blogs</a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="/images/blogs.svg" style="max-width:100%; height: auto;" />
<h1 class="hero-heading">MY<span class="heading-inverted"> BLOGS</span></h1>
<h2 class="hero-heading"> On the way to Document the learnings of <span class="heading-inverted">My WEB Development Journey</span></h2>
</header>
<ul reversed class="list-non-bullet">
<div class="container container-center">
<li>
<h1> Dummy Blog 3 </h1>
<small>November, 2020</small>
<p> Its a dummy blog!</p>
<a class="link link-secondary" href="/dummyblog.html">READ THIS</a>
<p class="spaces"></p>
</li>
</div>
<div class="ow">
<div class="container container-center">
<li>
<p class="spaces1"> </p>
<h1> Dummy Blog 2 </h1>
<small>November, 2020</small>
<p> Its a dummy blog!</p>
<a class="link link-secondary" href="/dummyblog.html">READ THIS</a>
<p class="spaces"></p>
</li>
</div>
</div>
<div class="container container-center">
<li>
<h1> Dummy Blog 1 </h1>
<small>November, 2020</small>
<p> Its a dummy blog!</p>
<a class="link link-secondary" href="/dummyblog.html">READ THIS</a>
<p class="spaces"></p>
</li>
</div>
</ul>
<footer class="footer">
<div class="footer-header">Social Media Presence</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/pranjalmahajan96" >Github</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/pranjal-mahajan-9a898b121/">Linkedin</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://twitter.com/mahajan_pranjal">Twitter</a>
</li>
</ul>
</footer>
</body>
</html>