-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
88 lines (78 loc) · 4.12 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
<!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>Anurag Gharat | Blogs</title>
<link rel="icon" href="./assets/icon.png">
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css">
<meta name="Amurag Gharat | Full Stack Developer "
content="A Full Stack Developer based in Mumbai. Currently in Final year of Computer Engineering at RAIT, Nerul. Open to work on Freelance projects and Internships" />
<meta name="keywords"
content="Anurag Gharat, Anurag Gharat Alibag, Anurag Gharat Mumbai, Anurag Gharat Full Stack Developer, JavaScript Love, Code, Anurag Codes, Web development in Alibag, Website development in Alibag, Freelancer Web Developer, Webiste Developer, Front End Developer" />
<link rel="apple-touch-icon" href="./assets/anurag192.png" />
<link rel="apple-touch-icon" href="./assets/anurag512.png" />
<meta name="apple-mobile-web-app-status-bar" content="#706fd3" />
<meta name="theme-color" content="#706fd3" />
</head>
<body class="dark-mode">
<div class="app">
<nav>
<!-- <img src="./assets/home.svg" alt="" > -->
<a href="./">
<i class="bi bi-house"></i>
</a>
<a href="./about.html">
<i class="bi bi-person"></i>
</a>
<a href="./projects.html" >
<i class="bi bi-laptop"></i>
</a>
<a href="./blog.html" >
<i class="bi bi-pencil active"></i>
</a>
<a href="./contact.html">
<i class="bi bi-telephone"></i>
</a>
</nav>
<div class="content about">
<div class="container about-inside">
<h1 class="heading">Blogs</h1>
<section>
<div class="row">
<div class="card">
<a href="">
<img src="./assets/blog1.png" alt="">
</a>
<h1 class="mt-20">A Simple Introduction to Redux!</h1>
<p class="mt-20 mb-20">If you have you ever made a JavaScript application chances are you would have come across a time when handling the state
of your application would have become unmanageable. In this case you would have looked for state management libraries
and left it learning halfway as it was complex and difficult</p>
<a href="https://medium.com/@anuraggharat/a-simple-introduction-to-redux-e50c4cbcf1c1" target="_blank" class="primary">Read here.</a>
</div>
<div class="card mt-50">
<a href="">
<img src="./assets/blog2.jpeg" alt="">
</a>
<h1 class="mt-20">Deploying your node.js server on Heroku in 5 simple steps.</h1>
<p class="mt-20 mb-20">In this tutorial I will show you how you can take your existing node.js server and host it on Heroku in 5 steps.</p>
<a href="https://medium.com/@anuraggharat/deploying-your-node-js-server-on-heroku-in-5-simple-steps-a557b1cd0c94" target="_blank" class="primary">Read More.</a>
</div>
</div>
</section>
</div>
</div>
<footer>
<!-- <i class="bi bi-moon-stars"></i> -->
</footer>
</div>
</body>
</html>
<script src="./app.js"></script>