-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
941 lines (773 loc) · 36.8 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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
<!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></title>
<!-- google font linking-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet">
<!-- poppins google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<!-- font awseome cdn linking-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- bootstrap can linking-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css">
<!-- style.css linking-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- navigation start -->
<main class="main">
<header class="header">
<div class="wrap d-flex">
<div class="logo"><a href="">Portfo<span>lio.</span></a></div>
<nav class="menu">
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#mh-service">Work</a></li>
<li><a href="#skill">Skills</a></li>
<li><a href="#mh-experience">Education</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<a href="javascript:void(0);" class="sidemenu-toggler">
<span></span>
<span></span>
<span></span>
</a>
<div class="sidemenu">
<a href="javascript:void(0) ;" class="close"></a>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#mh-service">Work</a></li>
<li><a href="#skill">Skills</a></li>
<li><a href="#mh-experience">Education</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<footer>
<div class="social-icons d-flex">
<li><a class="Twitter" href="https://twitter.com/Shivams_twt" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a class="Instagram" href="" target="_blank"><i class="fa fa-instagram"></i></a></li>
<li><a class="linkedin" href="https://www.linkedin.com/in/shivam-garg-15675720a/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a class="Github" href="https://github.com/The-Shivam-garg" target="_blank"><i class="fa fa-github-square"></i></a></li>
<li><a class="Blog" href="https://hashnode.com/@Shiva12" target="_blank"><i class="fa fa-rss-square" ></i></a></li>
<li><a class="Qwiklab" href="" target="_blank"><i class="fa fa-podcast" aria-hidden="true"></i></a></li>
</div>
</footer>
</div>
</header>
</main>
<!-- home page setup -->
<br><br><br><br><br><br><br>
<section Class="home container text-white">
<div class="row">
<div class="col-md-6">
<div class="hero-text">
<span class="title">hello i'm</span><br>
<span class="name">Shivam Garg</span><br>
<div class="wrapper">
<div class="static-txt">I'm a</div>
<ul class="dynamic-txts">
<li><span>Developer.</span></li>
<li><span>DesiGner.</span></li>
<li><span>Researcher.</span></li>
<li><span>Freelancer.</span></li>
</ul>
</div>
<div class="social-icons d-flex">
<li><a class="Twitter" href="https://twitter.com/Shivams_twt" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a class="Instagram" href="" target="_blank"><i class="fa fa-instagram"></i></a></li>
<li><a class="linkedin" href="https://www.linkedin.com/in/shivam-garg-15675720a/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a class="Github" href="https://github.com/The-Shivam-garg" target="_blank"><i class="fa fa-github-square"></i></a></li>
<li><a class="Blog" href="https://hashnode.com/@Shiva12" target="_blank"><i class="fa fa-rss-square" ></i></a></li>
<li><a class="emial" href="https://accounts.google.com/ServiceLogin/signinchooser?flowName=GlifWebSignIn&flowEntry=ServiceLogin" target="shivanshagarwal2020@gmail.com" ><i class="fa fa-envelope"></i></a></li>
<li><a class="Qwiklab" href="" target="_blank"><i class="fa fa-podcast" aria-hidden="true"></i></a></li>
</div>
</div>
</div>
<div class="col-md-6">
<div class="hero-img">
<div class="img-border">
<img src="./image/shivam.jfif" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- ABOUT page setup -->
<br><br><br><br><br><br><br>
<section class="about" id="about">
<div class="header">
<h1> ABOUT ME</h1>
</div>
<br><br><br>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="hero1-img">
<div class="imag-border">
<img src="./image/shivam.jfif" class="img-fluid" alt="">
</div>
</div>
</div>
<div class="col-md-5 text-white gap">
<div class="facicon">
<i class="fa fa-handshake-o" style="color:#ca3993"></i>
<h2>HELLO there!!</h2>
</div>
<div class="wrapper">
<div class="static-txt">I'm a</div>
<ul class="dynamic-txtss">
<li><span>DeveloPer.</span></li>
<li><span>DesiGner.</span></li>
<li><span>Researcher.</span></li>
<li><span>Freelancer.</span></li>
</ul>
</div>
<p>
I am a sophomore CSE Undergraduate Student at Eshan College of Engineering.
I get across to people and adjust to changes with ease.
I believe that a person should work on developing their
professional skills and learning new things all the time.
Currently, I am Founder and Event Manager of TechTrek Community ,open for all students to scale up their growth.
</p>
<br>
<div class="tag1">
<ul>
<li><span> <i class="fa fa-heart" style="color:#df3112"></i> Age : 18 </span></li>
<li><span><i class="fa fa-graduation-cap" style="color:#c9960b"></i> Univeristy : AKTU</span></li>
<br>
<li><span><i class="fa fa-envelope" style="color:#2e71c9"></i> Email : shivanshagarwal2020@gmail.com</span></li>
</ul>
</div>
<br> <br>
<div class="tag">
<div class="header4">
<h1>Skills</h1>
</div><br>
<ul>
<li><span>html</span></li>
<li><span>css</span></li>
<li><span>Php</span></li>
<li><span>java</span></li>
<li><span>Python</span></li>
<li><span>G-cloud</span></li>
<li><span>MS-Azure</span></li>
<li><span>react</span></li>
<li><span>javascript</span></li>
</ul>
</div>
<br>
<div class="download-button">
<a href="" class="btn btn-danger">Download CV <i class="fa fa-download" style="color:#ece6dc" ></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Service work page setup -->
<br><br><br><br><br><br><br>
<section class="mh-service text-white" id ="mh-service">
<div class="header">
<h1> WORK</h1>
</div>
<div class="tagline">
<div class="col-sm-12 text-center">
<h3><I>----I <span>like</span> to do----</I></h3>
</div>
</div>
<div class="container">
<div class="row">
<br><br>
<div class="col-sm-4">
<div class="mh-service-item">
<i class="fa fa-bullseye purple-color"></i>
<h3>UI DESIGN</h3>
<p>
User interface design or user interface engineering
is the design of user interfaces for machines and software,
such as computers, home appliances, mobile devices, and
other electronic devices, with the focus on maximizing
usability and the user experience.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="mh-service-item">
<i class="fa fa-code iron-color"></i>
<h3>Web Development</h3>
<p>
Front-end web development is the development of the graphical
user interface of a website, through the use of HTML, CSS,
and JavaScript, so that users can view and interact with that website.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="mh-service-item">
<i class="fa fa-object-ungroup sky-color"></i>
<h3>App Development</h3>
<p>
Mobile app development is the act or process by which a
mobile app is developed for mobile devices, such as
personal digital assistants, enterprise digital assistants
or mobile phones.
</p>
</div>
</div>
</div>
</div>
</div>
<br><br>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="mh-service-item">
<i class="fa fa-fire golden-color" style="color:#ec8f03"></i>
<h3>Research</h3>
<p>
researcher profile is an individual Internet profile
that provides a user firendly and efficient way of
showcasing your work. Having a unique profile:
Showcases your work to the world.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="mh-service-item">
<i class="fa fa-pencil-square" style="color:#af001d"></i>
<h3>Blogging</h3>
<p>
Blogging is the contribution
of information to any media and most
especially to digital media for an
end-user/audience in specific contexts.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="mh-service-item">
<i class="fa fa-magic" style="color:#1dbd08"></i>
<h3> Graphics Designer</h3>
<p>
graphics and layouts for product illustrations,
company logos and websites. determining size
and arrangement of copy and illustrative material,
as well as font style and size.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
/**
*todo:- Skill
*! SECTION SETUP STARTS FROM HERE...
*/
-->
<br><br><br><br><br><br><br>
<section class="skill" id="skill">
<!--
/**
*todo:- testing Skill SECTION SETUP STARTS FROM HERE...
*/
-->
<section class="testing1" >
<div class="inner">
<div class="header">
<h1> Technical Skills</h1>
</div>
<div class="container">
<div class="skill-box">
<div class="skill-title">
<div class="img">
<img src="./image/html.png" class="skill-icon">
</div>
<h3>HTML5</h3>
</div>
<p>
</p>
</div>
<div class="skill-box">
<div class="skill-title">
<div class="img">
<img src="./image/css.png" class="skill-icon">
</div>
<h3>CSs</h3>
</div>
<p>
</p>
</div>
<div class="skill-box">
<div class="skill-title">
<div class="img">
<img src="./image/java.png" class="skill-icon">
</div>
<h3>JavaScript</h3>
</div>
<p>
</p>
</div>
<div class="skill-box">
<div class="skill-title">
<div class="img">
<img src="./image/python1.png" class="skill-icon">
</div>
<h3>Python</h3>
</div>
<p>
</p>
</div>
<div class="skill-box">
<div class="skill-title">
<div class="img">
<img src="./image/jva.png" class="skill-icon">
</div>
<h3>Java</h3>
</div>
<p>
</p>
</div>
<div class="skill-box">
<div class="skill-title">
<div class="img">
<img src="./image/gcloud.png" class="skill-icon">
</div>
<h3>Cloud</h3>
</div>
<p>
</p>
</div>
</div>
</div>
</section>
<!--
/**
*!:- TECHNICAL skill page setup end here ...
*/
-->
<!--
/**
*todo:- Professional skill SECTION SETUP STARTS FROM HERE...
*/
-->
<br><br><br><br><br><br>
<section class="testing" id="testing">
<div class="a">
<div class="header">
<h1> Professional Skills</h1>
</div>
<ul class="cards">
<li>
<a href="" class="card">
<img src="./image/teamwork.png" class="card__image" alt="" />
<div class="card__overlay">
<div class="card__header">
<svg class="card__arc" xmlns="http://www.w3.org/2000/svg"><path /></svg>
<div class="icon" style="font-size: 2rem;"><i class="fa fa-users" style="color:#dbae18"></i></div>
<div class="card__header-text">
<h3 class="card__title"> TEAM WORK </h3>
<span class="hint-star star">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star-half-o" aria-hidden="true"></i>
<i class="fa fa-star-o" aria-hidden="true"></i>
</span>
</div>
</div>
</div>
<p class="card__description">I have interpersonal skills, or skills that help them effectively collaborate.
Professionals with teamwork skills understand how to accomplish tasks.</p>
</a>
</li>
<li>
<a href="" class="card">
<img src="./image/critical.jpg" class="card__image" alt="" />
<div class="card__overlay">
<div class="card__header">
<svg class="card__arc" xmlns="http://www.w3.org/2000/svg"><path /></svg>
<div class="icon" style="font-size: 2rem;"><i class="fa fa-lightbulb-o" style="color:#dbae18"></i></div>
<div class="card__header-text">
<h3 class="card__title">Critical Thinking</h3>
<span class="hint-star star">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star-o" aria-hidden="true"></i>
</span>
</div>
</div>
</div>
<p class="card__description">I'm adaptable to unpredictabile environments.
I will respond proactively to new or challenging circumstances.</p>
</a>
</li>
<li>
<a href="" class="card">
<img src="./image/communication.jpeg" class="card__image" alt="" />
<div class="card__overlay">
<div class="card__header">
<svg class="card__arc" xmlns="http://www.w3.org/2000/svg"><path /></svg>
<div class="icon" style="font-size:2rem;"><i class="fa fa-podcast" style="color:#dbae18"></i></div>
<div class="card__header-text">
<h3 class="card__title">Human Skill</h3>
<span class="hint-star star">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star-o" aria-hidden="true"></i>
</span>
</div>
</div>
</div>
<p class="card__description">I'm skilled at communication skill & understand how to efficiently
deliver information, exchange ideas and pay attention to the other person's message. </p>
</a>
</li>
<li>
<a href="" class="card">
<img src="./image/leadership.jpeg" class="card__image" alt="" />
<div class="card__overlay">
<div class="card__header">
<svg class="card__arc" xmlns="http://www.w3.org/2000/svg"><path /></svg>
<div class="icon" style="font-size: 2rem;"><i class="fa fa-universal-access" style="color:#dbae18"></i></div>
<div class="card__header-text">
<h3 class="card__title">Leadership</h3>
<span class="hint-star star">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star-o" aria-hidden="true"></i>
</span>
</div>
</div>
</div>
<p class="card__description">I can motivate, instruct and offer guidance,I'm confident in my abilities to help
others work, collaborate, problem-solve or succeed.</p>
</a>
</li>
</ul>
</div>
</section>
</section>
<!--
/**
*!:- PRofessional PAGE SECTION SETUP END HERE...
*/
-->
<!--
/**
*todo:- EDUCATION PAGE SECTION SETUP STARTS FROM HERE...
*/
-->
<br><br><br><br><br><br>
<section class="mh-experience" id="mh-experience">
<div class="header">
<h1>Education & Work Experience</h1>
</div>
<br><br><br>
<div class="container">
<div class="row">
<div class="col-smd-12 col-md-6">
<div class="mh-education">
<h3>Education</h3>
<div class="mh-education-details">
<div class="mh-education-item">
<h4>Bachelor of Technology-CSE<a href="https://admission.eshancollege.com"> ~ Eshan College Of Engineering</a></h4>
<div class="mh-eduyear">2020-Present</div>
<p>
>> I <sup>st</sup> year ~ CGPA : 9.1 {Topper of BTECh-1st year} <BR>
</p>
</div>
<br>
<div class="mh-education-item">
<h4>Secondary intermediate High School <a href="https://shivalik.edu.in/"> ~ Shivalik Cambridge college</a></h4>
<div class="mh-eduyear">2019-2020</div>
<p>
>> Completed with : 80%
</p>
</div>
<br>
<div class="mh-education-item">
<h4>Secondary High School <a href="https://shivalik.edu.in/"> ~ Shivalik Cambridge college</a></h4>
<div class="mh-eduyear">2017-2018</div>
<p>
>> completed with: 90%
</p>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="mh-work">
<h3>Work Experience</h3>
<div class="mh-experience-details">
<div class="mh-work-item">
<h4>Front-end <a href="">Developer</a></h4>
<span class="hint-star star">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star-half-o" aria-hidden="true"></i>
</span>
<div class="mh-eduyear">2018-Present</div>
<span>Responsibility</span>
<ul class="work-responsibility">
<li><i class="fa fa-star"></i>Validate Css</li>
<li><i class="fa fa-star"></i>Project Management</li>
</ul>
</div>
<div class="mh-work-item">
<h4> UI <a href="">Designer </a></h4>
<span class="hint-star star">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star-half-o" aria-hidden="true"></i>
<i class="fa fa-star-o" aria-hidden="true"></i>
<i class="fa fa-star-o" aria-hidden="true"></i>
</span>
<div class="mh-eduyear">2021-Present</div>
<span>Responsibility</span>
<ul class="work-responsibility">
<span class="hint-star star">
<li> <i class="fa fa-star" aria-hidden="true"></i> Validate Css</li>
<li><i class="fa fa-circle"></i>Project Management</li>
</ul>
</div>
<div class="mh-work-item">
<h4> <a href=""> -Developer</a></h4>
<span class="hint-star star">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star-half-o" aria-hidden="true"></i>
<i class="fa fa-star-o" aria-hidden="true"></i>
<i class="fa fa-star-o" aria-hidden="true"></i>
</span>
<div class="mh-eduyear">2021-Present</div>
<span>Responsibility</span>
<ul class="work-responsibility">
<li><i class="fa fa-circle"></i>Validate Css</li>
<li><i class="fa fa-circle"></i>Project Management</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
/**
*!:- EDUCATION PAGE SECTION SETUP END HERE...
*/
/**
*?Page section setup
*/
-->
<br><br><br><br><br><br>
<!--
/**
*todo:- PRoject PAGE SECTION SETUP STARTS FROM HERE...
*/
-->
<section class="projects" id="projects" >
<div class="header">
<h1> PROJECTS</h1>
</div>
<br><br>
<div class="wrapper">
<div class="card0">
<img src="./image/asa.jpeg" />
<div class="info">
<h1>Smart Mirror</h1>
<p>smart mirror features a digital display behind the mirror and can
connect via Bluetooth , wifi . it gives you freedom to use which ever
way you want to use , to watch movies , for updates like news ,date
and time, for health-care , fitness so on.</p>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="card0">
<img src="./image/java pro.jfif" />
<div class="info">
<h1>V-Examination System</h1>
<p>a range of investments held by a person or organization.</p>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="card0">
<img src="./image/pr.jpg" />
<div class="info">
<h1>Idea</h1>
<p>a range of investments held by a person or organization.</p>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="card0">
<img src="./image/portf.jpg">
<div class="info">
<h1>Portfolio</h1>
<p>a range of investments held by a person or organization.</p>
<a href="#" class="btn">Read More</a>
</div>
</div>
</div>
</section>
<!--
/**
*!:- PROJECT PAGE SECTION SETUP END HERE...
*/
/**
*todo:- CONTACT PAGE SECTION SETUP STARTS FROM HERE...
*/
-->
<br><br><br><br><br><br>
<section class="contact" id="contact">
<div class="content">
<h1> Contact Me</h1>
<div class="tagline1">
<p><I>---- Thank You for visiting my <span> Personal Portfolio</span> . Connect with me Over Socials ----</I></p>
</div>
</div>
<br><br>
<div class= "container">
<div class="contactInfo">
<div class="box">
<div class="icon"><i class="fa fa-user-circle-o" style="color:#ec8f03"></i></div>
<div class="text">
<h3>About</h3>
<p>I am Shivam Garg,<br>IInd year Undergraduate student,<br>at E.C.E</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-map-marker" style="color:#ec8f03"></i></div>
<div class="text">
<h3>Address</h3>
<p>H.no-yyy A.V.c ,<br>Bodla,Agra<br>UttarPradesh,India</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-phone-square" style="color:#ec8f03"></i></div>
<div class="text">
<h3>Phone</h3>
<p>+91-123-456-7891</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-envelope" style="color:#ec8f03"></i></div>
<div class="text">
<h3>Email</h3>
<p>shivanshagarwal2020@gmail.com,</p>
</div>
</div>
</div>
<div class="contactform">
<form>
<h2>Send Message</h2>
<div class ="inputBox">
<input type="text" name="" required="required">
<span>Full Name</span>
</div>
<div class ="inputBox">
<input type="text" name="" required="required">
<span>Email</span>
</div>
<div class ="inputBox">
<input type="text" name="" required="required">
<span>Type Your Message...</span>
</div>
<div class="inputBox">
<input type="submit" name="" value="send">
</div>
</form>
</div>
</div>
</section>
<!--
/**
*!:- CONTACT PAGE SECTION SETUP END HERE...
*/
/**
*todo:- Footer SECTION SETUP STARTS FROM HERE...
*/
-->
<footer>
<div class="footer-1">
<div class="content">
<div class="left box">
<div class="upper">
<div class="topic">About us</div>
<p>Thank You for visiting my Personal Portfolio . Connect with me Over Socials. Projects will be updated soon.
This Portfolio is Built by using HTML,CSS, and also JavaScript along with creative CSS Animations and Effects.</p>
</div>
<div class="lower">
<div class="topic">Contact us</div>
<div class="phone">
<a href="#"><i class="fa fa-volume-control-phone"></i>+91 123 456 7891</a>
</div>
<div class="email">
<a href="#"><i class="fa fa-envelope"></i>shivanshagarwal2020@gmail.com</a>
</div>
</div>
</div>
<div class="middle box">
<div class="topic">General Message </div>
<div><a href="#">Hope in this Covid time,</a></div>
<div><a href="#">You and Your family will stay Happy and Healthy.</a></div>
<div><a href="#"><i class="fa fa-smile-o" , style="color:#e0b02c"></i>
<i class="fa fa-smile-o" , style="color:#e0b02c"></i>
<i class="fa fa-smile-o" , style="color:#e0b02c"></i></a></div>
</div>
<div class="right box">
<div class="topic">Feedback</div>
<form action="#">
<input type="text" placeholder="Enter your valuable feedback">
<input type="submit" name="" value="Send">
<div class="media-icons">
<a class="Twitter" href="https://twitter.com/Shivams_twt" target="_blank"><i class="fa fa-twitter"></i></a>
<a class="Instagram" href="" target="_blank"><i class="fa fa-instagram"></i></a>
<a class="linkedin" href="https://www.linkedin.com/in/shivam-garg-15675720a/" target="_blank"><i class="fa fa-linkedin"></i></a>
<a class="Github" href="https://github.com/The-Shivam-garg" target="_blank"><i class="fa fa-github-square"></i></a>
<a class="Blog" href="https://hashnode.com/@Shiva12" target="_blank"><i class="fa fa-rss-square" ></i></a>
</div>
</form>
</div>
</div>
<div class="bottom">
<p>Copyright © 2021 <a href="#">@SHIVAMGarg</a> All rights reserved</p>
</div>
</div>
</footer>
<!--
/**
*!:- Footer SECTION SETUP End HEre...
*/
/**
*? JAVASCRIPT LINKING ...
*/
-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.12/typed.min.js"></script>
<script src = "circle-progress.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="function.js"></script>
</body>
</html>