-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
107 lines (74 loc) · 3.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs | Vinay Patil</title>
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation">
<a class="nav-menu" href="/index.html" >HOME</a>
<a href="/projects.html"class="nav-menu" >PROJECTS</a>
<a href="/blogs.html" class="nav-menu"href="#" >BLOGS</a>
<div id="indicator"></div>
</nav>
<header class="hero">
<img class="hero-image" src="image_blog.svg">
<h1 class="hero-heading">My <span class="hero-heading-inside">Blogs</span></h1>
</header>
<ul class="list-non-bullet">
<li>
<div class=" container container-center">
<h2>What is Git?</h2>
<small>December 27, 2020</small>
<p>What is git? If you are in the technology field then you may have heard about git, GitHub,
opensource, are they all same and why do you have to know about them...Read More On</p>
<a class="link link-secondary " href="https://vinaypatil.hashnode.dev/git-for-kids">HashNode</a>
<a class="link link-primary " href="https://dev.to/engineervinay/git-for-kids-fok">DEV.to</a>
</div>
</li>
<li>
<div class=" container container-center">
<h2>AGI & ANI</h2>
<small>December 19, 2020 </small>
<p>Artificial intelligence is one of the most trending topics in the technology field right now, let's
see first what is...</p>
<a class="link link-secondary " href="https://vinaypatil.hashnode.dev/what-is-agi-and-ani">HashNode</a>
<a class="link link-primary " href="https://dev.to/engineervinay/what-is-agi-ani-1l37">DEV.to</a>
</div>
</li>
<li>
<div class=" container container-center">
<h2>HTTP Requests</h2>
<small>Jan 13, 2021 </small>
<p>In this article, we are going to talk about Requests in HTTP, but first what is this HTTP?...</p>
<a class="link link-secondary " href="https://vinaypatil.hashnode.dev/what-is-http-requests">HashNode</a>
<a class="link link-primary " href="https://dev.to/engineervinay/http-requests-and-methods-2bk">DEV.to</a>
</div>
</li>
</ul>
<br>
<br>
<br>
<br>
<br>
<footer>
<div>
<h3>Connect With Me </h3>
</div>
<div>
<ul class="ul-list">
<li class="list-ele"><a href="https://github.com/engineervinay"><img class="icon" src="/github.svg"></a>
</li>
<li class="list-ele"><a href="https://instagram.com/v.inay.patil"><img class="icon"
src="/instagram.svg"></a></li>
<li class="list-ele"><a href="https://linkedin.com/in/engineervinay"><img class="icon"
src="/linkedin.svg"></a></li>
<li class="list-ele"><a href="https://twitter.com/meengineervinay"><img class="icon"
src="/twitter.svg"></a></li>
</ul>
</div>
</footer>
</body>
</html>