-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
546 lines (497 loc) · 30.6 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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My Portfolio</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<!-- Bootstrap CSS-->
<link rel="stylesheet" href="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome CSS-->
<link rel="stylesheet" href="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/font-awesome/css/font-awesome.min.css">
<!-- Google fonts - Roboto + Roboto Slab-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,700%7CRoboto:400,700,300">
<!-- owl carousel-->
<link rel="stylesheet" href="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/owl.carousel/assets/owl.carousel.css">
<link rel="stylesheet" href="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/owl.carousel/assets/owl.theme.default.css">
<!-- animate.css-->
<link rel="stylesheet" href="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/animate.css/animate.css">
<!-- theme stylesheet-->
<link rel="stylesheet" href="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/css/style.default.css" id="theme-stylesheet">
<!-- Custom stylesheet - for your changes-->
<link rel="stylesheet" href="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/css/custom.css">
</head>
<body>
<!-- Reference item-->
<!-- navbar-->
<header class="header">
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container"><a href="#intro" class="navbar-brand scrollTo">My Portfolio</a>
<button type="button" data-toggle="collapse" data-target="#navbarcollapse" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler navbar-toggler-right"><span class="fa fa-bars"></span></button>
<div id="navbarcollapse" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a href="#intro" class="nav-link link-scroll">Intro</a></li>
<li class="nav-item"><a href="#about" class="nav-link link-scroll">About Me</a></li>
<li class="nav-item"><a href="#education" class="nav-link link-scroll">Education</a></li>
<li class="nav-item"><a href="#skills" class="nav-link link-scroll">My Skills</a></li>
<li class="nav-item"><a href="#projects" class="nav-link link-scroll">Projects</a></li>
<li class="nav-item"><a href="#contact" class="nav-link link-scroll">Contact Me</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Intro Image-->
<section id="intro" style="background: url(images/bg1.jpg) center center no-repeat; background-size: cover;" class="intro-section pb-2">
<div class="container text-center">
<h1 data-animate="fadeInDown" class="text-shadow mb-5">Hello, Hi, नमस्ते, ਸਿਤ ਸ਼ਰੀ ਅਕਾਲ !</h1>
<h1 data-animate="fadeInDown" class="text-shadow mb-5">I am Nitin Gupta</h1>
<p data-animate="slideInUp" class="h3 text-shadow text-400">Currently I grind HTML, CSS and Bootstrap and then weld them with Firebase into beautiful and efficient websites.</p>
</div>
</section>
<!-- About-->
<section id="about" class="about-section" style="margin-bottom: 0%">
<div class="container">
<header class="text-center">
<h2 data-animate="fadeInDown" class="title">About me</h2>
</header>
<div class="row">
<div data-animate="fadeInUp" class="col-lg-6">
<p>
<br><br>
Hello there!! My name is <strong>Nitin Gupta</strong>. I am a <strong>student</strong> in <strong>Chitkara University</strong> pursuing <strong>Btech</strong> in <strong>Computer Science</strong>. Talking about my hobbies, I just love Football. I am a die hard fan of Cristiano Ronaldo. He is my role model and I try to encapsulate his dedication, passion, hardwork and
determination towards his work into me. I also love playing Table Tennis. I am a gym lover too. Reading a lot of novels is also in the list of my hobbies. I love watching TV series, Anime series and movies. They teach me about the harsh
reality of this world and how to overcome any obstacle which comes in your way. Moreover, Japanese Anime series like
Kuroko-no-Basketball, Haikyuu etc give me motivation in my life to <strong>Never Ever Give Up.</strong><br><br>
So this was a bit about my personal life. Now talking about my Professional life, I love coding. I have a lot of ideas bubbling in my mind and I just want to code about them. I love to try new things in my life. I like solving coding puzzles.
I am so into building websites that I get lost while building them. I love playing with html, css and bootstrap. I like doing research and I always want to find answers to the unsolved problems of the world.<br><br>
The two things which I have learnt in my 19 years of life is that:<br>
1. <strong>The eyes should learn to listen before they learn to see.</strong><br>
2. <strong>Nothing is permanent but change.</strong>
</p>
</div>
<div data-animate="fadeInUp" class="col-lg-6" style="width: 280px;height: 720px;">
<div data-animate="fadeInDown" class="col-sm-6 mx-auto mt-5"><img style="margin-top:0%;height: 450px;width: 350px;border-radius: 60%;"src="images/about2.jpg"></div>
</div>
</div>
</div>
</section>
<!-- Education-->
<section id="education" class="skills-section bg-gray">
<div class="container">
<header class="text-center mb-2">
<h2 data-animate="bounceIn" class="title">My Education</h2>
<center>
<font style="font-size: 20px;">
<div data-animate="fadeInUp">
<h3>Graduation (2017-2021)</h3>
<strong>College:  </strong>Chitkara University, Rajpura, Punjab.<br>
<strong>Score:  </strong>9.66 CGPA.<br>
</div><br>
<div data-animate="fadeInUp">
<h3>Secondary Education (2015-2017)</h3>
<strong>School:  </strong>D.C. Montessori Sr. Sec. School, Panchkula.<br>
<strong>Score:  </strong>84.6%.<br>
</div><br>
<div data-animate="fadeInUp">
<h3>Primary Education (2003-2015)</h3>
<strong>School:  </strong>Kundan Vidya Mandir Sr. Sec. School, Ludhiana, Punjab.<br>
<strong>Score:  </strong>10 CGPA.<br>
</div><br>
</font>
</center>
</header>
</div>
</section>
<!-- Skills -->
<section id="skills">
<div class="container">
<center><h2 data-animate="bounceIn" class="title">My Own Judgement<br>Of<br> My Skills</h2></center>
<div class="row">
<div class="col-sm-6" data-animate="fadeInUp">
<div class="skill-item">
<div class="progress-title">C</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width:70%; background-color: lightgreen">
<div style="margin-top: 1%;">70%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">C++</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width:60%; background-color: lightgreen">
<div style="margin-top: 1%;">60%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">Python</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width:50%; background-color: lightgreen">
<div style="margin-top: 1%;">50%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">Linux</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width:70%; background-color: lightgreen">
<div style="margin-top: 1%;">70%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">Firebase</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100" style="width:85%; background-color: lightgreen">
<div style="margin-top: 1%;">85%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">Express</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:40%; background-color: lightgreen">
<div style="margin-top: 1%;">40%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">Digital Marketing</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width:90%; background-color: lightgreen">
<div style="margin-top: 1%;">90%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">React</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width:30%; background-color: lightgreen">
<div style="margin-top: 1%;">30%</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6" data-animate="fadeInDown">
<div class="skill-item">
<div class="progress-title">Html</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width:90%; background-color: lightgreen">
<div style="margin-top: 1%;">90%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">CSS</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width:70%; background-color: lightgreen">
<div style="margin-top: 1%;">70%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">Bootstrap</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width:60%; background-color: lightgreen">
<div style="margin-top: 1%;">60%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">JavaScript</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width:80%; background-color: lightgreen">
<div style="margin-top: 1%;">80%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">Node.js</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:40%; background-color: lightgreen">
<div style="margin-top: 1%;">40%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">MongoDB</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width:75%; background-color: lightgreen">
<div style="margin-top: 1%;">75%</div>
</div>
</div>
</div>
<div class="skill-item">
<div class="progress-title">My SQL</div>
<div class="progress" style="height: 30px;">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:40%; background-color: lightgreen">
<div style="margin-top: 1%;">40%</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects">
<div class="container">
<div class="col-sm-12">
<div class="mb-5 text-center">
<h2 data-animate="fadeInUp" class="title">My Projects</h2>
<p data-animate="fadeInUp" class="lead">Here are some of my projects that I have made.</p>
</div>
<ul id="filter" data-animate="fadeInUp">
<li class="active"><a href="#" data-filter="all">All</a></li>
<li><a href="#" data-filter="webdesign">Webdesign</a></li>
<li><a href="#" data-filter="coding">Coding</a></li>
<li><a href="#" data-filter="other">Others</a></li>
</ul>
<div id="detail">
<div class="row">
<div class="col-lg-10 mx-auto"><span class="close">×</span>
<div id="detail-slider" class="owl-carousel owl-theme"></div>
<div class="text-center">
<h1 id="detail-title" class="title"></h1>
</div>
<div id="detail-content"></div>
</div>
</div>
</div>
<div id="references-masonry" data-animate="fadeInUp">
<div class="row">
<div data-category="webdesign" class="reference-item col-lg-3 col-md-6">
<div class="reference"><a href="#"><img src="images/cq.jpg" style="height: 190px;width: 310px;" alt="none" class="img-fluid">
<div class="overlay">
<div class="inner">
<h3 class="h4 reference-title">Code Quotient Clone</h3>
<p>It's a fully functioning user and community management website</p>
</div>
</div></a>
<div data-images="images/cq.jpg" class="sr-only reference-description">
<p>This project is basically a clone of the Code Quotient website. I was guided by my teacher for this project.
This project focused on learning frontend, backend as well as using database for your website. I used Html, CSS,
Bootstrap for FrontEnd, Node.js, Express, JavaScript for BackEnd and MongoDB as my DataBase.</p>
<p>This website basically created a user of a specific designation and according to was allowed to access
the facilities of the account. Additional functionality which I provided to the website was using Nodemailer for
sending mails, Multer for uploading photos and passport for logging in with Github profile.</p>
<p class="buttons text-center"><a href="https://github.com/nitin-1926/CodeQuotient-clone" class="btn btn-outline-primary"><i class="fa fa-github"></i> View Code</a></p>
</div>
</div>
</div>
<div data-category="coding" class="reference-item col-lg-3 col-md-6">
<div class="reference"><a href="#"><img src="images/snakecover.png" style="height: 190px;width: 310px;" alt="" class="img-fluid">
<div class="overlay">
<div class="inner">
<h3 class="h4 reference-title">Snake Game</h3>
<p>Basic Snake Game in C++</p>
</div>
</div></a>
<div data-images="images/snakeinside.png" class="sr-only reference-description">
<p>I created a basic Snake Game using C++ language. It runs on terminal and on compiler. It has very low
graphics but full functionality.</p>
<p>The functionality of this game is similar to the very popular Nokia Snake Game. If you wanna play it then
click on the below button, download the code, run it on your c++ compiler and enjoy.</p>
<p class="buttons text-center"><a href="https://github.com/nitin-1926/SnakeGame" class="btn btn-outline-primary"><i class="fa fa-github"></i> View Code</a></p>
</div>
</div>
</div>
<div data-category="other" class="reference-item col-lg-3 col-md-6">
<div class="reference"><a href="#"><img src="images/jojo.jpg" style="height: 190px;width: 310px;" alt="" class="img-fluid">
<div class="overlay">
<div class="inner">
<h3 class="h4 reference-title">Jojo Rocks</h3>
<p>Hey Google, Talk to Jojo Rocks</p>
</div>
</div></a>
<div data-images="images/jojo.jpg" class="sr-only reference-description">
<p>My this project is a google assistant app made without using any template, i.e. using DialogFlow.
This app is based on the famous Anime series, Jojo's Bizarre Adventures.</p>
<p>This app basically tells you everything about Jojo. I have tried to put answers to as many questions
as I could, but you know there is a always a room for improvement. Curious about who or what is Jojo?
Open your Google Assistant and Say "Talk to Jojo Rocks". Have a nice conversation and give me feedback.
Or click on the below button to open it in your laptops.</p>
<p class="buttons text-center"><a href="https://assistant.google.com/services/a/uid/000000df1d98533b?hl=en&source=web" class="btn btn-outline-primary"><i class="fa fa-google"></i> Hey Google</a></p>
</div>
</div>
</div>
<div data-category="coding" class="reference-item col-lg-3 col-md-6">
<div class="reference"><a href="#"><img src="images/searchengine.jpg" style="height: 190px;width: 310px;" alt="" class="img-fluid">
<div class="overlay">
<div class="inner">
<h3 class="h4 reference-title">Search Engine</h3>
<p>Basic Search Engine in C</p>
</div>
</div></a>
<div data-images="images/searchengine.jpg" class="sr-only reference-description">
<p>In this project I made a basic Search Engine guided by my Teacher. It is made in C language and it is a bit
hardcoded.</p>
<p>It comprises of three parts :- Crawler, Indexer and Query Engine. It would fetch all the links within the
provided link. Then it would store the count of each major word in a linked list. Finally when we would search
a word, it would give the output in the deciding order.</p>
<p class="buttons text-center"><a href="https://github.com/nitin-1926/Search-engine" class="btn btn-outline-primary"><i class="fa fa-github"></i> View Code</a></p>
</div>
</div>
</div>
<div data-category="webdesign" class="reference-item col-lg-3 col-md-6">
<div class="reference"><a href="#"><img src="images/AI.jpg" style="height: 190px;width: 310px;" alt="" class="img-fluid">
<div class="overlay">
<div class="inner">
<h3 class="h4 reference-title">AI Lab webpage</h3>
<p>Webpage for the AI lab of my College</p>
</div>
</div></a>
<div data-images="images/AI.jpg" class="sr-only reference-description">
<p>I created a webpage for the Artificial Intelligence Laboratory of research department of Chitkara University.</p>
<p>It comprises of only FrontEnd i.e. Html, CSS and Bootstrap. It is been added to the website of Chitkara
University. Go check it out.</p>
<p class="buttons text-center"><a href="https://www.curin.chitkara.edu.in/labs/ai-laboratory/" class="btn btn-outline-primary"><i class="fa fa-globe"></i> Visit website</a></p>
</div>
</div>
</div>
<div data-category="webdesign" class="reference-item col-lg-3 col-md-6">
<div class="reference"><a href="#"><img src="images/lcc.jpg" style="height: 190px;width: 310px;" alt="NO IMG" class="img-fluid">
<div class="overlay">
<div class="inner">
<h3 class="h4 reference-title">Liquid Crystal Lab webpage</h3>
<p>Webpage for the Liquid Crystal lab of my College</p>
</div>
</div></a>
<div data-images="images/lcc.jpg" class="sr-only reference-description">
<p>I created a webpage for the Liquid Crystal Laboratory of research department of Chitkara University.</p>
<p>It comprises of only FrontEnd i.e. Html, CSS and Bootstrap. It is been added to the website of Chitkara
University. Go check it out.</p>
<p class="buttons text-center"><a href="https://www.curin.chitkara.edu.in/labs/liquid-crystal/" class="btn btn-outline-primary"><i class="fa fa-globe"></i> Visit website</a></p>
</div>
</div>
</div>
<div data-category="webdesign" class="reference-item col-lg-3 col-md-6">
<div class="reference"><a href="#"><img src="images/portfolio.png" style="height: 190px;width: 310px;" alt="" class="img-fluid">
<div class="overlay">
<div class="inner">
<h3 class="h4 reference-title">My Portfolio</h3>
<p>Webpage about me!!</p>
</div>
</div></a>
<div data-images="images/portfolio.jpg" class="sr-only reference-description">
<p>This project is the webpage which you are viewing. It is my portfolio in the form of a webpage. This is made
using Html, CSS, Bootstrap and JavaScript.</p>
<p>My Portfolio tells About me, my education, my skills, my projects so far and other things. For the code of
same click on the button below.</p>
<p class="buttons text-center"><a href="https://github.com/nitin-1926/NitinGupta_portfolio" class="btn btn-outline-primary"><i class="fa fa-github"></i> View Code</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-animate="fadeInUp" class="text-center">
<p class="lead"><strong>Would you like to know more about my work or just recommend something?</strong></p>
<p><a href="https://github.com/nitin-1926" class="btn btn-outline-primary link-scroll"><i class="fa fa-github">GITHUB PROFILE</i></a>    <a href="#contact" class="btn btn-outline-primary link-scroll">Contact me</a></p>
</div>
</div>
</section>
<!-- Contact-->
<section id="contact" data-animate="bounceIn" class="contact-section contact">
<div class="container">
<header class="text-center">
<h2 class="title">Contact me</h2>
</header>
<div class="row">
<div class="col-lg-8 mx-auto">
<form id="contact-form" method="post" action="">
<div class="messages"></div>
<div class="controls">
<div class="row">
<div class="col-md-6">
<input type="text" name="name" placeholder="Your firstname *" required="required" class="form-control">
</div>
<div class="col-md-6">
<input type="text" name="surname" placeholder="Your lastname *" required="required" class="form-control">
</div>
<div class="col-md-6">
<input type="text" name="email" placeholder="Your email *" required="required" class="form-control">
</div>
<div class="col-md-6">
<input type="text" name="phone" placeholder="Your phone" class="form-control">
</div>
<div class="col-md-12">
<textarea name="message" placeholder="Message for me *" rows="4" required="required" class="form-control"></textarea>
</div>
<div class="col-md-12 text-center">
<button type="submit" class="btn btn-outline-primary">Send message</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<footer class="main-footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<h5 style="color: white;">Get in touch:<br></h5>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://github.com/nitin-1926">
<i class="fa fa-github fa-2x"> </i>
</a>
</li>
<li class="list-inline-item">
<a href="http://www.instagram.com/gupta7nitin">
<i class="fa fa-instagram fa-2x"> </i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/NitinGu38736637">
<i class="fa fa-twitter fa-2x"> </i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/gupta7nitin">
<i class="fa fa-facebook fa-2x"> </i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/gupta7nitin">
<i class="fa fa-linkedin fa-2x"> </i>
</a>
</li>
</ul>
</div>
<!-- /.6-->
<div class="col-md-8 text-center text-lg-right mt-4 mt-lg-0">
<p>
House No.: <strong><font style="size: 10px;color: #4FBFA8;">963/9</font><br></strong>
Locality: <strong><font style="size: 10px;color: #4FBFA8;">Deep Nagar, Civil Lines</font><br></strong>
City: <strong><font style="size: 10px;color: #4FBFA8;">Ludhiana</font><br></strong>
State: <strong><font style="size: 10px;color: #4FBFA8;">Punjab</font><br></strong>
Postal Code: <strong><font style="size: 10px;color: #4FBFA8;">141001</font><br></strong>
Call me on: <strong><font style="size: 10px;color: #4FBFA8;">7837783777</font><br></strong>
Email me on: <strong><font style="size: 10px;color: #4FBFA8;">[email protected]</font><br></strong>
</p>
</div>
<div class="col-12 mt-4">
<center><font style="font-size: 30px; color: white;" class="fa fa-code"> by Nitin Gupta </font></center>
<p class="template-bootstrapious">© 2019 All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- JavaScript files-->
<script src="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/jquery/jquery.min.js"></script>
<script src="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/jquery.cookie/jquery.cookie.js"> </script>
<script src="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/waypoints/lib/jquery.waypoints.min.js"></script>
<script src="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/vendor/jquery.counterup/jquery.counterup.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.4.0/leaflet.js"> </script>
<script src="https://d19m59y37dris4.cloudfront.net/it-worker/2-1/js/front.js"></script>
</body>
</html>