-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
443 lines (339 loc) · 14.2 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Harshit's Resume</title>
</head>
<body>
<div class="container">
<header id="main-header">
<div class="row no-gutters">
<div class="col-lg-4 col-md-5">
<img src="img/harshit.jpg" class="img-fluid">
</div>
<div class="col-lg-8 col-md-7 ">
<div class=" bg-dark text-center text-white p-5 ">
<div class="row align-items-center">
<div class="col-md-6 ">
<h1 class="display-5">Harshit Shukla</h1>
</div>
<div class="col-md-2 mb-resp ">
<a href="https://twitter.com/harshit2021999" target="_blank">
<i class="fab fa-twitter"></i></a>
</div>
<div class="col-md-2 mb-resp">
<a href="https://www.facebook.com/Harshit.516" target="_blank">
<i class="fab fa-facebook"></i></a>
</div>
<div class="col-md-2 mb-resp">
<a href="https://www.instagram.com/mr.clumsyy/" target="_blank">
<i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="p-5 bg-black text-white">
Well versed with javascript,html/css,bootstrap and <br>some
basic knowledge of android(using java)<br>20 yr old
</div>
<div id="mainmenu">
<div class="row text-white no-gutters ">
<div class="col-md-3 text-center " id="transforming-items">
<div class="port-item p-4 bg-primary " data-toggle="collapse" data-target="#home">
<i class="fas fa-home fa-2x d-block"></i>
<span class="d-none d-sm-block">Home</span>
</div>
</div>
<div class="col-md-3 text-center " id="transforming-items">
<div class="port-item p-4 bg-success " data-toggle="collapse" data-target="#resume">
<i class="fas fa-graduation-cap fa-2x d-block"></i>
<span class="d-none d-sm-block">Academics</span>
</div>
</div>
<div class="col-md-3 text-center" id="transforming-items">
<div class="port-item p-4 bg-warning " data-toggle="collapse" data-target="#work">
<i class="fas fa-folder-open fa-2x d-block"></i>
<span class="d-none d-sm-block ">work</span>
</div>
</div>
<div class="col-md-3 text-center" id="transforming-items">
<div class="port-item p-4 bg-danger " data-toggle="collapse" data-target="#contact">
<i class="fas fa-envelope fa-2x d-block"></i>
<span class="d-none d-sm-block">Contact</span>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- home -->
<div id="home" class="collapse show">
<div class="card card-body bg-primary text-white py-5">
<h2>Welcome to my page</h2>
<p class="lead">Currently pursuing bscit(third year)
</p>
</div>
<div class="card">
<div class="card-body py-5">
<h1 class="lead"><strong>I have breifed about my skill sets below for more check
<span class="bg-warning text-white px-2"><i class="fas fa-folder-open "></i> work </span> </strong> </h1>
<br>
<!-- My skills -->
<div id='accordion'>
<div class='card'>
<div class='card-header bg-primary'>
<h5>
<a class='text-white' href='#collapse1' data-parent='#accordion' data-toggle='collapse'>
Javascript
</a>
</h5>
</div>
<div id=collapse1 class='collapse '>
<div class='card-body bg-light'>
I have a very good grip on javascript from its syntax to its core OOPS concepts
<br>I can perform Dom manipulation ,can handle keyboard/mouse events , add/remove elements from dom ,use the console etc.
</div>
</div>
</div>
<div class='card'>
<div class='card-header bg-primary'>
<h5>
<a class='text-white' href='#collapse2' data-parent='#collapse1' data-toggle='collapse'>
HTML/CSS
</a>
</h5>
</div>
<div id='collapse2' class='collapse'>
<div class='card-body bg-light'>
I understand all the basic functionalities and Tags of HTML and CSS and can work with them,<br>
But i generally prefer working with bootstrap to speed up the process and use css here and there for a bit of customization
</div>
</div>
</div>
<div class='card'>
<div class='card-header bg-primary'>
<h5>
<a class='text-white' href='#collapse3' data-parent='#collapse2' data-toggle='collapse'>
Bootstrap
</a>
</h5>
</div>
<div id='collapse3' class='collapse'>
<div class='card-body bg-light'>
I have a really good knowledge of bootstrap 4 framework and can make some reponsive websites which can be checked in '<span class="bg-warning text-white px-2"><i class="fas fa-folder-open "></i> work </span>' section.<br>
i.e aligning the elements , giving bg colors,spacing,sizing,buttons,navbars,Tables,Alert and progress bars ,forms,bootstrap grids,<br>modals,collapse widgets ,etc.
</div>
</div>
</div>
<div class='card'>
<div class='card-header bg-primary'>
<h5>
<a class='text-white' href='#collapse4' data-parent='#collapse3' data-toggle='collapse'>
Java/Android
</a>
</h5>
</div>
<div id='collapse4' class='collapse'>
<div class='card-body bg-light'>
I haven't mastered java yet but i know all the basics a begineer should know , i havent made any project to showcase my skills but i am currently learning android studio for my ty project
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- academic -->
<div id="resume" class="collapse">
<div class="card card-body bg-success text-white py-5">
<h2>My Academics</h2>
<p class="lead">My academic performance so far
</p>
</div>
<br>
<table class='table table-striped'>
<thead>
<tr>
<th>#</th>
<th>Year</th>
<th>Course</th>
<th>Board/University</th>
<th>Percentage/Pointer</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>2015</td>
<td>Class 10th</td>
<td>Maharashtra Board</td>
<td>81.80%</td>
</tr>
<tr>
<th scope="row">2</th>
<td>2017</td>
<td>Class 12th</td>
<td>Maharashtra Board</td>
<td>58.31%</td>
</tr>
<tr>
<th scope="row">3</th>
<td>2018</td>
<td>BScit Sem-1</td>
<td>Mumbai University</td>
<td>8.20</td>
</tr>
<tr>
<th scope="row">4</th>
<td>2018</td>
<td>BScit Sem-2</td>
<td>Mumbai University</td>
<td>7.60</td>
</tr>
<tr>
<th scope="row">5</th>
<td>2018</td>
<td>BScit Sem-3</td>
<td>Mumbai University</td>
<td>7.90</td>
</tr>
<tr>
<th scope="row">6</th>
<td>2019</td>
<td>BScit Sem-4</td>
<td>Mumbai University</td>
<td>8.80</td>
</tr>
</tbody>
</table>
<br>
</div>
<!-- WORK -->
<div id="work" class="collapse">
<div class="card card-body bg-warning text-white py-5">
<h2>My Work</h2>
<p class="lead">Here, you can have a glimpse of some of my side projects</p>
</div><br>
<div class="card card-body py-5">
<h3>What Have I Built?</h3>
<p>Below i have listed some of my works</p>
<div class='card'>
<div class='card-header bg-warning'>
<b>Javascript</b>
</div>
<div class='card-body'>
<h4 class='card-title'>javascript projects</h4>
<p class='card-text'>here are some of my works making heavy usage of vanilla javascript </p>
<a class='btn btn-outline-dark' href="projects/javascript/project1/index.html" target="_blank">Task List</a>
<a class='btn btn-outline-dark' href="projects/javascript/project2/index.html" target="_blank">Book Mangament</a>
<a class='btn btn-outline-dark' href="projects/javascript/project3/index.html" target="_blank">Loan Calculator</a>
</div>
</div>
<br>
<div class='card'>
<div class='card-header bg-warning'>
<b>Bootstrap</b>
</div>
<div class='card-body'>
<h4 class='card-title'>Bootstrap projects</h4>
<p class='card-text'>Here i have used bootstrap to build some static websites </p>
<a class='btn btn-outline-dark' href="projects/bootstrap/project1/index.html" target="_blank">Social Site</a>
<a class='btn btn-outline-dark' href="projects/bootstrap/project2/index.html" target="_blank">Book website</a>
<a class='btn btn-outline-dark' href="projects/bootstrap/project3/index.html" target="_blank">admin Dashboard</a>
</div>
</div>
<br>
<div class='card'>
<div class='card-header bg-warning'>
<b>Client work</b>
</div>
<div class='card-body'>
<h4 class='card-title'>Ninja Security</h4>
<p class='card-text'>This is my first project for a client</p>
<a class='btn btn-outline-dark' href="https://ninjasecurity.netlify.com" target="_blank">Check It!</a>
</div>
</div>
</div>
</div>
<!-- CONTACT -->
<div id="contact" class="collapse">
<div class="card card-body bg-danger text-white py-5">
<h2>Contact</h2>
<p class="lead">feel free to contact me if you liked my work :)</p>
</div>
<div class="card card-body py-5">
<h3>Get In Touch</h3>
<p>Enter your details below and i will get in touch with you</p>
<form action="POST" data-netlify="true" id="contact-form">
<div class="form-group">
<div class="input-group input-group-lg">
<div class="input-group-prepend">
<span class="input-group-text bg-danger text-white">
<i class="fas fa-user"></i>
</span>
</div>
<input type="text" class="form-control bg-dark text-white" name="name" placeholder="Name">
</div>
</div>
<div class="form-group">
<div class="input-group input-group-lg">
<div class="input-group-prepend">
<span class="input-group-text bg-danger text-white">
<i class="fas fa-envelope"></i>
</span>
</div>
<input type="email" class="form-control bg-dark text-white" name="email" placeholder="Email">
</div>
</div>
<div class="form-group">
<div class="input-group input-group-lg">
<div class="input-group-prepend">
<span class="input-group-text bg-danger text-white">
<i class="fas fa-pencil-alt"></i>
</span>
</div>
<textarea class="form-control bg-dark text-white" name="message" placeholder="Message"></textarea>
</div>
</div>
<div class="form-group">
<div
data-netlify-recaptcha="true">
</div>
</div>
<input type="submit" value="Submit" class="btn btn-danger btn-block btn-lg">
</form>
</div>
</div>
<!-- footer -->
<footer id="main-footer" class="p-5 bg-dark text-white">
<div class="row justify-content-center">
<div class="col-md-6 text-center">
©Harshit Shukla
</div>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T"
crossorigin="anonymous"></script>
<script>
$(".port-item").click(function(){
$('.collapse').collapse('hide');
})
$(document).on('click', '[data-toggle="lightbox"]', function (e) {
e.preventDefault();
$(this).ekkoLightbox();
});
</script>
</body>
</html>