-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (119 loc) · 4.38 KB
/
index.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="BlNUJWlocdCH7GQygU6gdPbJoEFt-qRMX4pccLA2pXU" />
<title>Home | VinayPatil</title>
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation">
<a class="nav-menu" href="#">HOME</a>
<a href="/projects.html"class="nav-menu" >PROJECTS</a>
<a href="/blogs.html" class="nav-menu" >BLOGS</a>
<div id="indicator"></div>
<!--
<ul class="list-non-bullet align-right">
<li class="display-inline">
<a class="link link-active menu-name" href="/">home</a>
</li>
<li class="display-inline">
<a class="link" href="/projects.html">Project</a>
</li>
<li class="display-inline">
<a class="link" href="/blogs.html">Blogs</a>
</li>
<li class="display-inline">
<a class="link" href="/contact.html">Contact</a>
</li>
</ul>
-->
</nav>
<header class="hero">
<img class="hero-image" src="image2.svg">
<h1 class="hero-heading "><span class="name">Vinay Patil</span> a <span class="hero-heading-inside ">Programmer</span></h1>
</header>
<!-- <section >
<div class="card container-center container">
<h3>Technologies</h3>
<p> I am familiar with Git, NodeJS, HTML5, CSS, JavaScript, C++, python </p>
</div>
</section>
<section>
<div class="container container-center">
<h3>Projects</h3>
<p>I want to showcase my work and thus, you can see my project hosted online</p>
<a class="link link-primary" href="/projects.html">Browse Projects</a>
</div>
</section>
<section class="ow-section container-center">
<div class="container-center container">
<h3>Blogs</h3>
<p> I am also working on some technical and non technical blogs. i like to document my journey of learning.
</p>
<a class="link link-secondary" href="/blogs.html">Read Blogs</a>
</div>
</section>
-->
<div class="new-container">
<div class="new-box">
<span>
</span>
<div class="new-content">
<h2>Technologies</h2>
<p>
I am familiar with Git, NodeJS, HTML5, CSS, JavaScript, C++, python </p>
</div>
</div>
<div class="new-box">
<span>
</span>
<div class="new-content">
<h2>Projects</h2>
<p>
I want to showcase my work and thus, you can see my project hosted online </p>
<a class="link link-primary" href="/projects.html">Browse Projects</a>
</div>
</div>
<div class="new-box">
<span>
</span>
<div class="new-content">
<h2>Designs</h2>
<p>
I want to showcase HTML and CSS designs created by me. </p>
<a class="link link-primary" href="/designs.html">Browse Designs</a>
</div>
</div>
<div class="new-box">
<span>
</span>
<div class="new-content">
<h2>Blogs</h2>
<p>
I am also working on some technical and non technical blogs. i like to document my journey of learning.
</p>
<a class="link link-primary" href="/blogs.html">Read Blogs</a>
</div>
</div>
</div>
<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>