-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
78 lines (69 loc) · 2.59 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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>Blogs</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">sharath</div>
<ul class="list-non-bullet nav-list">
<li class="list-item-inline">
<a class="link" href="index.html">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">
<h1 class="hero-heading">Read my <span class="heading-inverted"> Blogs</span></h1>
</header>
<ul reversed class="list-non-bullet">
<li>
<div class="container container-center projects-list">
<h2>Blog1 : Difference between var, let, const &</h2>
<h2>Difference between =, ==, === in javascript</h2>
<small>September, 2021</small>
<p>Before using variables we must know what exactly is var const and let and also =, ==, === their
differences</p>
<a class="link link-primary" href="blog1.html">Read more</a>
</div>
</li>
<li>
<div class="container container-center projects-list">
<h2>Blog2 : EV revolution in India</h2>
<small>September, 2021</small>
<p>Our cute little Indian problems and my opinion towards EV</p>
<a class="link link-primary" href="blog2.html">Read more</a>
</div>
</li>
</ul>
<footer class="footer">
<div class="footer-header">connect with me at Socials</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/sharath-io">
Github
</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/sharath-io/">
Linkedin
</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://twitter.com/sharath_io">
Twitter
</a>
</li>
</ul>
</footer>
</body>
</html>