-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
70 lines (61 loc) · 3.38 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
<!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 | siddhartha-sahu</title>
<link href="styles.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css">
<link rel="shortcut icon" type="svg" href="images/coder2.svg"/>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand"><a class="link" href="index.html">Siddhartha Sahu</a></div>
<ul class="list-non-bullet nav-pill">
<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>
<center><h2 class="main-head">Siddhartha's Blogs</h2>
Sharing my ideas, realisations and learning through 5-minute reads.
</center>
<br><br>
<section class="section ow">
<div class="container-center">
<h1>Why you should everyone learn to code?</h1>
<p>If you are sceptical about learning how to code? or you are someone who wants a reason to learn programming just go through this blog. It might change your perspective towards coding completely.</p>
<br>
<a class="link link-primary" target="_blank" href="https://dev.to/callmesahu/why-should-you-learn-to-code-335o">Read Blog</a>
</div>
</section>
<section class="section">
<div class="container-center">
<h1>How does the Internet Work?</h1>
<p>Ever wondered how the web works? Here is my take on explaining you the working of the internet from a web developer's point of view. If you are someone who is new to web development or is a curious soul, this blog is highly recommended.</p>
<br>
<a class="link link-primary" target="_blank" href="https://dev.to/callmesahu/how-does-the-internet-work-i4c">Read Blog</a>
</div>
</section>
<!-- <section class="section">
<div class="container-center">
<h1>Getting Started with Programming</h1>
<p>If you are someone who wants to build programming logic, here is a step by step guide upon the topics you should learn. This blog will also serve you as a prerequisite for CP as well as DS & Algo.</p>
<br>
<a class="link link-primary" href="blog2.html">Read Blog</a>
</div>
</section> -->
<br><br>
<footer class="footer">
<div class="footer-header">
Connect With Me
</div>
<ul class="social-links">
<li class="list-item-inline"><a class="link" href="https://www.linkedin.com/in/siddhartha-sahu/" target="_blank"><i class="devicon-linkedin-plain"></i> LinkedIn</a></li>
<li class="list-item-inline"><a class="link" href="https://github.com/CallMeSahu" target="_blank"><i class="devicon-github-original"></i> GitHub</a></li>
<li class="list-item-inline"><a class="link" href="https://twitter.com/CallMeSahu" target="_blank"><i class="devicon-twitter-original"></i> Twitter</a></li>
</ul>
</footer>
</body>
</html>