-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
168 lines (159 loc) · 5.64 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!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>Gaurav's Portfolio</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="projects.css" />
</head>
<body>
<section class="menu">
<button id="close-menu">×</button>
<nav>
<ul>
<li><a href="#about-me">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#technologies">Technologies</a></li>
<li><a href="#qualifications">Qualifications</a></li>
<li><a href="#hobbies">Hobbies</a></li>
<li><a href="#contact-me">Contact</a></li>
</ul>
</nav>
</section>
<header class="header">
<nav class="default-nav">
<section>
<a href="#about-me">About Me</a><a href="#projects">Projects</a><a href="#technologies">Technologies</a><a href="#qualifications">Qualifications</a><a href="#hobbies">Hobbies</a><a href="#contact-me">Contact</a>
</section>
<section>
<button id="theme-switcher"></button>
</section>
</nav>
<nav class="mobile-nav">
<button id="menu-button">Menu</button>
</nav>
</header>
<main class="container">
<article class="intro">
<img id="profile-image" src="Gaurav.png" alt="Profile image - Gaurav" />
<h1>Hi, I'm Gaurav</h1>
<p>I am a <span id="dynamic-text" class="dynamic-text-color"></span></p>
<p class="social-links">
<a href="https://twitter.com/gaurav_sen_" target="_blank">
<img width="30" height="30" src="https://www.iconpacks.net/icons/1/free-icon-twitter-135.png" alt="" />
</a>
<a href="https://www.linkedin.com/in/gauravs3n" target="_blank">
<img width="30" height="30" src="https://www.iconpacks.net/icons/1/free-icon-linkedin-130.png" alt="" /> </a
><a href="https://www.instagram.com/gaurav.sen_/" target="_blank">
<img
width="30"
height="30"
src="https://www.iconpacks.net/icons/3/free-icon-instagram-logo-8869.png"
alt=""
/>
</a>
</p>
</article>
<section id="about-me">
<h2>About Me</h2>
<p>A Software Engineer by profession with 9 years of industry experience.</p>
<p>In 2020 I started tutoring as a hobby. A way to earn a passive side income.</p>
<p>
After receiving positive feedback from a large number of students, I took it up more actively. It gives me
immense joy to see my students succeed and grow with the skills that I've taught them.
</p>
<p>
This website is an attempt to share my knowledge and experience. I'm willing to share my knowledge and
experience with you. Are you willing to learn?
</p>
</section>
<section id="projects">
<h2>Projects</h2>
<section class="projects-list"></section>
</section>
<section id="technologies">
<h2>Technologies</h2>
<section class="container">
<section class="card shadow move-y shadow move-y">
<header>
<h1>Frontend</h1>
</header>
<ul>
<li>HTML</li>
<li>JS</li>
<li>CSS</li>
</ul>
</section>
<section class="card shadow move-y">
<header>
<h1>Backend</h1>
</header>
<ul>
<li>NodeJS</li>
<li>Asp.NET</li>
<li>Rails</li>
</ul>
</section>
<section class="card shadow move-y">
<header>
<h1>Database</h1>
</header>
<ul>
<li>Mongo DB</li>
<li>Postgres</li>
<li>MySQL</li>
</ul>
</section>
</section>
</section>
<section id="qualifications">
<h2>Qualifications</h2>
<ol>
<li>BE Computer</li>
<li>CDAC - Wireless and Mobile Computing</li>
</ol>
</section>
<section id="hobbies">
<h2>Hobbies</h2>
<ul>
<li>Swimming</li>
<li>Listening to Music</li>
<li>Drawing</li>
</ul>
</section>
</section>
<section id="contact-me">
<h2>Contact Me</h2>
<section class="contacts-container">
<section class="contact-img">
<img src="undraw_Mailbox.png" alt="image for mailbox">
</section>
<form name="contact" id="contact" method="POST" data-netlify="true">
<section>
<label for="firstName">First name</label>
<input type="text" name="firstName" id="firstName" required />
</section>
<section>
<label for="lastName">Last name</label>
<input type="text" name="lastName" id="lastName" required />
</section>
<section>
<label for="message">Message</label>
<textarea name="message" id="message" cols="30" rows="10"> </textarea>
</section>
<button type="submit">Send</button>
</form>
</section>
</section>
</main>
<footer>
Made with ❤️ by Gaurav ©2022
</footer>
<script src="main.js"></script>
<script src="menu.js"></script>
<script src="theme.js"></script>
<script src="projects.js"></script>
</body>
</html>