-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
899 lines (632 loc) · 19.6 KB
/
index2.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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Gautham Vijayaraj</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Lilita One' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Fredoka One' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js" integrity="sha384-3LK/3kTpDE/Pkp8gTNp2gR/2gOiwQ6QaO7Td0zV76UFJVhqLl4Vl3KL1We6q6wR9" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/dee65e5b65.js" crossorigin="anonymous"></script>
<!-- add icon link -->
<link rel = "icon" href =
"https://firebasestorage.googleapis.com/v0/b/srm-guru.appspot.com/o/CV%2FGautham%2FScreenshot_20210413-195120.png?alt=media&token=e324b562-9d9d-4186-a8b1-5a5d9650931d"
type = "image/x-icon">
<style>
:root {
--primary: #141414;
--light: #F3F3F3;
--dark: #686868;
}
html, body {
min-height: 100vh;
margin: 0;
padding: 0;
background-color: var(--primary);
color: var(--light);
font-family: Poppins;
box-sizing: border-box;
line-height: 1.4;
}
.wrapper {
margin: 0;
padding: 0;
}
header {
padding: 20px 20px 20px 20px;
position: fixed;
top: 0;
display: grid;
grid-gap:5px;
grid-template-columns: 4fr 1fr;
grid-template-areas:
"mn mn sb . . . ";
background-color: var(--primary);
width: 100%;
margin-bottom: 0px;
}
.main-nav {
grid-area: mn;
padding: 0 0 0 0;
}
.main-nav a {
color: var(--light);
text-decoration: none;
margin: 5px;
}
.main-nav a:hover {
color: var(--dark);
}
.sub-nav {
grid-area: sb;
padding: 0 40px 0 40px;
}
.sub-nav a {
color: var(--light);
text-decoration: none;
margin: 5px;
}
.sub-nav a:hover {
color: var(--dark);
}
.location p{
font-size:50px;
}
.main-container {
padding: 50px;
}
.box {
display: grid;
grid-gap: 50px;
grid-template-columns: repeat(3, minmax(100px, 1fr));
}
.box1 {
display: grid;
grid-gap: 50px;
grid-template-columns: repeat(4, minmax(100px, 1fr));
}
.box2 {
display: grid;
grid-gap: 50px;
grid-template-columns: repeat(2, minmax(100px, 1fr));
}
.box a {
text-decoration: none;
}
.box1 a {
text-decoration: none;
}
.one {
transition: transform .3s;
animation: mymove1 1s;
}
.two {
transition: transform .3s;
animation: mymove2 1s;
}
.three {
transition: transform .3s;
animation: mymove3 1s;
}
@keyframes mymove1 {
0%{transform: translateX(-100vw);}
100%{transform: translateX(0vw);}
}
@keyframes mymove2 {
0%{transform: translateY(+100vw);}
100%{transform: translateY(0vw);}
}
@keyframes mymove3 {
0%{transform: translateX(+100vw);}
100%{transform: translateX(0vw);}
}
/*.Eb:hover {
transition: transform .3s;
-ms-transform: scale(1.4);
-webkit-transform: scale(1.4);
transform: scale(1.4);
}*/
.box .Eb {
border-radius: 10px;
background-color: #FFB71C;
padding-top: 10px;
height:200px;
animation: col 6s infinite;
animation-delay: 1s;
}
@keyframes col {
0% {background-color: #FFB71C;}
25% {background-color: #3399FF;}
50% {background-color: #CC0000;}
75% {background-color: #33CC00;}
100% {background-color: #FFB71C;}
}
.Eb p{
color: var(--primary);
text-decoration: none;
padding-left:30px;
padding-right:30px;
font-size: 15px;
}
.box1 .Sb {
border-radius: 10px;
height:auto;
}
.Sb p{
color: var(--light);
text-decoration: none;
padding-left:30px;
padding-right:30px;
font-size: 15px;
}
.box2 .Eb {
border-radius: 10px;
background-color: #FFB71C;
padding-top: 10px;
height:300px;
animation: col 8s infinite;
animation-delay: 1s;
}
progress{
margin-bottom:10px;
}
.abc{
height:400vh;
width:100vw;
background-color:blue;
}
/* MEDIA QUERIES */
@media screen and (min-width: 501px) {
.social-icons {
display: none;
}
}
@media(max-width: 1200px) {
.box .Eb {
height:220px;
}
.box1 .Sb {
height:auto;
}
.box2 .Eb {
height:300px;
}
}
@media(max-width: 1100px) {
.box .Eb {
height:250px;
}
.box1 .Sb {
height:auto;
}
.box2 .Eb {
height:300px;
}
}
@media(max-width: 1100px) {
.box .Eb {
height:300px;
}
.box1 .Sb {
height:auto;
}
.box2 .Eb {
height:300px;
}
}
@media(max-width: 900px) {
header {
display: grid;
grid-gap: 20px;
grid-template-columns: 4fr 1fr;
grid-template-areas:
"mn mn sb . . . ";
}
.location p{
text-align: center;
}
.box .Eb {
height:220px;
}
.box1 .Sb {
height:auto;
}
.box2 .Eb {
height:auto;
padding-bottom:30px;
}
h1 {
text-align: center;
font-size: 18px;
}
.box {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(2, minmax(100px, 1fr));
}
.box1 {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(2, minmax(100px, 1fr));
}
.box2 {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(1, minmax(100px, 1fr));
}
}
@media(max-width: 700px) {
header {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(2, 1fr);
grid-template-areas:
"mn mn mn mn mn mn mn mn mn mn"
"nt nt nt . . . sb . . . "
;
}
h1 {
text-align: center;
font-size: 18px;
}
.location p{
text-align: center;
}
.box .Eb {
height:auto;
padding-bottom:30px;
}
.box1 .Sb {
height:auto;
padding-bottom:30px;
}
.box2 .Eb {
height:auto;
padding-bottom:30px;
}
.box {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(1, minmax(100px, 1fr));
}
.box1 {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(1, minmax(100px, 1fr));
}
.box2 {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(1, minmax(100px, 1fr));
}
}
@media(max-width: 500px) {
.wrapper {
font-size: 15px;
}
header {
display: none;
grid-gap: 20px;
grid-template-columns: repeat(2, 1fr);
grid-template-areas:
"mn mn mn mn mn mn mn mn mn mn"
"nt nt nt . . . sb . . . "
;
}
.main-container {
padding: 30px;
}
.location p{
text-align: center;
font-size:30px;
}
.main-nav {
display: grid;
grid-gap: 0px;
grid-template-columns: repeat(1, 1fr);
text-align: center;
}
h1 {
text-align: center;
font-size: 18px;
}
.box {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(1, 1fr);
}
.box1 {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(1, 1fr);
}
.box2 {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(1, minmax(100px, 1fr));
}
.box .Eb {
height:auto;
padding-bottom:30px;
}
.box2 .Eb {
height:auto;
padding-bottom:30px;
}
.Eb p{ font-size:15px;}
.Sb p{ font-size:15px;}
.box1 .Sb {
height:auto;
padding-bottom:30px;
}
}
</style>
</head>
<body>
<!-- <div class="social-icons">
<ul>
<a href="#" style='text-decoration:none;'><li>Home</li></a>
<a href="#Experience" style='text-decoration:none;'><li>Experience</li></a>
<a href="#Skills" style='text-decoration:none;'><li>Skills</li></a>
<a href="#Projects" style='text-decoration:none;'><li>Projects</li></a>
<a href="#Education" style='text-decoration:none;'><li>Education</li></a>
<a href="https://www.linkedin.com/in/gautham-vijayaraj-20899b190" target="_blank"><li><i class="fa-brands fa-linkedin-in fa-xl" style='font-size:30px'></i></li></a>
<a href="https://www.hackerrank.com/gauthiii" target="_blank"><li><i class="fa-brands fa-hackerrank fa-xl" style='font-size:30px'></i></li></a>
<a href="https://github.com/gauthiii" target="_blank"><li><i class="fa-brands fa-github fa-xl" style='font-size:30px'></i></li></a>
</ul>
</div> -->
<div class="wrapper">
<header>
<nav class="main-nav">
<a href="#">Home</a>
<a href="#Experience">Experience</a>
<a href="#Skills">Skills</a>
<a href="#Projects">Projects</a>
<a href="#Education">Education</a>
</nav>
<nav class="sub-nav">
<a href="https://www.linkedin.com/in/gautham-vijayaraj-20899b190" target="_blank"><i class="fa-brands fa-linkedin-in fa-xl"></i></a>
<a href="https://www.hackerrank.com/gauthiii" target="_blank"><i class="fa-brands fa-hackerrank fa-xl"></i></a>
<a href="https://github.com/gauthiii" target="_blank"><i class="fa-brands fa-github fa-xl"></i></a>
<a href="#">Contact Me</a>
</nav>
</header>
<section class="main-container" >
<div class="location" id="Experience">
<p>GAUTHAM VIJAYARAJ</p>
<h1>Experience</h1>
<div class="box">
<a class="one" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">FREELANCE</span><br>
<span style="font-weight:bold;">Full-Stack Developer</span><br>
<span style="font-weight:bold;">May 2018 - Present</span><br><br>
<span>I can make fully functional responsive websites and mobile apps within a given time-frame</span>
</p>
</div>
</a>
<a class="two" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">Tata Consultancy Services Ltd.</span><br>
<span style="font-weight:bold;">Assistant System Engineer</span><br>
<span style="font-weight:bold;">Jun 2021 - Nov 2022</span><br><br>
<span>Worked in the Azure Cloud Security Domain with an additional 3-month experience in Tech-Support assisance to Aviva UK Clients</span>
</p>
</div>
</a>
<a class="three" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">Encore Theme Technologies Pvt. Ltd.</span><br>
<span style="font-weight:bold;">Intern</span><br>
<span style="font-weight:bold;">Jun 2019</span><br><br>
<span>Got exposure to Blockchain and learnt how to perform SFTP using JAVA.</span>
</p>
</div>
</a>
</div>
</div>
<br><br>
<div class="location" id="Skills">
<h1 >Skills</h1>
<div class="box1">
<a class="one" >
<div class="Sb">
<p>
<span style="font-weight:bold;font">FRONTEND TECHNOLOGIES</span><br><br>
<span style="font-weight:bold;">Flutter</span><br>
<progress id="file" value="80" max="100"> 32% </progress><br>
<span style="font-weight:bold;">ReactJs</span><br>
<progress id="file" value="65" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Angular</span><br>
<progress id="file" value="50" max="100"> 32% </progress><br>
<span style="font-weight:bold;">HTML & CSS</span><br>
<progress id="file" value="70" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Play Framework</span><br>
<progress id="file" value="35" max="100"> 32% </progress><br>
</p>
</div>
</a>
<a class="three" >
<div class="Sb">
<p>
<span style="font-weight:bold;font">BACKEND TECHNOLOGIES</span><br><br>
<span style="font-weight:bold;">Firebase</span><br>
<progress id="file" value="80" max="100"> 32% </progress><br>
<span style="font-weight:bold;">NodeJs</span><br>
<progress id="file" value="65" max="100"> 32% </progress><br>
<span style="font-weight:bold;">XAMPP</span><br>
<progress id="file" value="50" max="100"> 32% </progress><br>
<span style="font-weight:bold;">MONGO DB</span><br>
<progress id="file" value="45" max="100"> 32% </progress><br>
<span style="font-weight:bold;">SQL/SQLite/MySQL</span><br>
<progress id="file" value="75" max="100"> 32% </progress><br>
</p>
</div>
</a>
<a class="two" >
<div class="Sb">
<p>
<span style="font-weight:bold;font">PROGRAMMING LANGUAGES</span><br><br>
<span style="font-weight:bold;">C/C++</span><br>
<progress id="file" value="85" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Python</span><br>
<progress id="file" value="100" max="100"> 32% </progress><br>
<span style="font-weight:bold;">JavaScript</span><br>
<progress id="file" value="75" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Java</span><br>
<progress id="file" value="75" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Dart</span><br>
<progress id="file" value="90" max="100"> 32% </progress><br>
</p>
</div>
</a>
<a class="three" >
<div class="Sb">
<p>
<span style="font-weight:bold;font">OTHER SKILLS</span><br><br>
<span style="font-weight:bold;">Azure</span><br>
<progress id="file" value="40" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Cryptography</span><br>
<progress id="file" value="65" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Microsoft Office</span><br>
<progress id="file" value="80" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Network Security</span><br>
<progress id="file" value="65" max="100"> 32% </progress><br>
<span style="font-weight:bold;">Machine Learning</span><br>
<progress id="file" value="70" max="100"> 32% </progress><br>
</p>
</div>
</a>
</div>
</div>
<br><br>
<div class="location" id="Projects">
<h1 >Projects</h1>
<div class="box2">
<a class="one" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">JOINT-COMMUNITY</span><br>
<span style="font-weight:bold;">Real time Social Networking App</span><br>
<span style="font-weight:bold;">May 2020 to Jun 2020</span><br><br>
<span>Joint-Community or JC is a social networking app that is similar to Instagram with an additional feature of Facial Recognition enabled authentication.Users can create their accounts authenticated by their Google Accounts.Users can post pictures,like,comment and interact with others.I used Flutter for the front-end and integrated with Firebase for the back-end.</span>
</p>
</div>
</a>
<a class="two" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">JC MESSENGER</span><br>
<span style="font-weight:bold;"> Real Time Chatting App</span><br>
<span style="font-weight:bold;">Jun 2020 to Jul 2020</span><br><br>
<span>JC Messenger is a secured chat app built using flutter and fire-base. This app converts all the messages sent into a combination of meaningless string of characters.This conversion is done using an algorithm which I created to perform a cipher technique.Original texts are stored and given access only if the secret access code is entered.
Domain - App Development and Cryptography</span>
</p>
</div>
</a>
<a class="three" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">TWITTER PROFILER</span><br>
<span style="font-weight:bold;">Twitter Fake Profile Detector</span><br>
<span style="font-weight:bold;">Jul 2020 to Jul 2020</span><br><br>
<span>After the emergence of Twitter to the social media scenario, people with a good number of followers have been called Social Media influencers.However, there are as much as disadvantages as much as advantages in these social networking platforms.One of them is the use of fake profiles and identity theft.So our application helps in identifying which of these accounts are bot accounts or fake profiles.</span>
</p>
</div>
</a>
<a class="one" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">SNAKE GAME</span><br>
<span style="font-weight:bold;">Single Player Game</span><br>
<span style="font-weight:bold;">Jul 2020 to Aug 2020</span><br><br>
<span>The Snake Game is a single player android game that is built using Flutter.The player moves the snake which grows in length after each point it gets, with it's itself being a primary obstacle the snake must move inside a wall and survive by not touching any of the walls</span>
</p>
</div>
</a>
<a class="two" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">FIND ME</span><br>
<span style="font-weight:bold;">Distress Alert Application</span><br>
<span style="font-weight:bold;">March 2021 to Apr 2021</span><br><br>
<span>Find Me is an emergency application that is built using flutter and firebase.Users can send their immediate location co-ordinates to their contacts in case of any crisis or emergency to any of the other users who can then view your location immediately.</span>
</p>
</div>
</a>
<a class="three" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">ARTISTREE</span><br>
<span style="font-weight:bold;">Real Time E-Commerce Application</span><br>
<span style="font-weight:bold;">Dec 2020 to Feb 2021</span><br><br>
<span>The project objective is to deliver the online shopping application into android platform. This project is an attempt to provide the advantages of online shopping to customers. This app is created using Flutter, Firebase for the front-end and back-end respectively. The UI design was done using the Adobe Illustrator.</span>
</p>
</div>
</a>
<a class="one" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">SNAKE GAME MULTIPLAYER</span><br>
<span style="font-weight:bold;">Massively Multiplayer Online Game</span><br>
<span style="font-weight:bold;">Jan 2019 to May 2019</span><br><br>
<span>A full stack web application of a multiplayer game that users can play online built using the Play Framework and Java.</span>
</p>
</div>
</a>
<a class="two" >
<div class="Eb">
<p>
<span style="font-weight:bold;font">PORTFOLIO WEBSITE</span><br>
<span style="font-weight:bold;">Responsive Website</span><br>
<span style="font-weight:bold;">Jan 2022 to Feb 2022</span><br><br>
<span> A responsive website with that is interactive with the user that I built from scratch using HTML, CSS and JavaScript</span>
</p>
</div>
</a>
</div>
</div>
<br><br>
<div class="location" id="Education">
<h1 >Education</h1>
<div class="box">
<a class="one" >
<div class="Sb">
<p>
<span style="font-weight:bold;font">UNDERGRADUATE DEGREE</span><br><br>
<span style="font-weight:bold;">B.Tech - Computer Science and Engineering</span><br>
<span style="font-weight:bold;">SRM Institute of Science and Technology, Kattankalathur, India</span><br>
<span style="font-weight:bold;">85.75 %</span><br>
</p>
</div>
</a>
<a class="three" >
<div class="Sb">
<p>
<span style="font-weight:bold;font">HIGHER SECONDARY SCHOOL</span><br><br>
<span style="font-weight:bold;">12th Standard, CBSE</span><br>
<span style="font-weight:bold;">The PSBB Millennium School, Chennai, India</span><br>
<span style="font-weight:bold;">86.4 %</span><br>
</p>
</div>
</a>
<a class="two" >
<div class="Sb">
<p>
<span style="font-weight:bold;font">HIGH SCHOOL</span><br><br>
<span style="font-weight:bold;">10th Standard, CBSE</span><br>
<span style="font-weight:bold;">The PSBB Millennium School, Chennai, India</span><br>
<span style="font-weight:bold;">9.6 CGPA</span><br>
</p>
</div>
</a>
</div>
</div>
</section>
</div>
</body>
</html>