-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
892 lines (813 loc) · 64.1 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="stylesheet" href="https://use.typekit.net/vam5svp.css">
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon">
<title>My Portfolio</title>
<meta name="robots" content="max-image-preview:large">
<link rel="dns-prefetch" href="//use.fontawesome.com">
<link rel="dns-prefetch" href="//s.w.org">
<link rel="alternate" type="application/rss+xml" title="myportfoliorv » Feed" href="/www.rahulvijan.tech/feed">
<link rel="alternate" type="application/rss+xml" title="myportfoliorv » Comments Feed" href="/www.rahulvijan.tech/comments/feed">
<!-- This site uses the Google Analytics by MonsterInsights plugin v8.9.1 - Using Analytics tracking - https://www.monsterinsights.com/ -->
<!-- Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel. -->
<!-- No UA code set -->
<!-- / Google Analytics by MonsterInsights -->
<script>
window._wpemojiSettings = {
"baseUrl": "https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/",
"ext": ".png",
"svgUrl": "https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/",
"svgExt": ".svg",
"source": {
"concatemoji": "\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.0.3"
}
};
/*! This file is auto-generated */
! function(e, a, t) {
var n, r, o, i = a.createElement("canvas"),
p = i.getContext && i.getContext("2d");
function s(e, t) {
var a = String.fromCharCode,
e = (p.clearRect(0, 0, i.width, i.height), p.fillText(a.apply(this, e), 0, 0), i.toDataURL());
return p.clearRect(0, 0, i.width, i.height), p.fillText(a.apply(this, t), 0, 0), e === i.toDataURL()
}
function c(e) {
var t = a.createElement("script");
t.src = e, t.defer = t.type = "text/javascript", a.getElementsByTagName("head")[0].appendChild(t)
}
for (o = Array("flag", "emoji"), t.supports = {
everything: !0,
everythingExceptFlag: !0
}, r = 0; r < o.length; r++) t.supports[o[r]] = function(e) {
if (!p || !p.fillText) return !1;
switch (p.textBaseline = "top", p.font = "600 32px Arial", e) {
case "flag":
return s([127987, 65039, 8205, 9895, 65039], [127987, 65039, 8203, 9895, 65039]) ? !1 : !s([55356, 56826, 55356, 56819], [55356, 56826, 8203, 55356, 56819]) && !s([55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447], [55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447]);
case "emoji":
return !s([129777, 127995, 8205, 129778, 127999], [129777, 127995, 8203, 129778, 127999])
}
return !1
}(o[r]), t.supports.everything = t.supports.everything && t.supports[o[r]], "flag" !== o[r] && (t.supports.everythingExceptFlag = t.supports.everythingExceptFlag && t.supports[o[r]]);
t.supports.everythingExceptFlag = t.supports.everythingExceptFlag && !t.supports.flag, t.DOMReady = !1, t.readyCallback = function() {
t.DOMReady = !0
}, t.supports.everything || (n = function() {
t.readyCallback()
}, a.addEventListener ? (a.addEventListener("DOMContentLoaded", n, !1), e.addEventListener("load", n, !1)) : (e.attachEvent("onload", n), a.attachEvent("onreadystatechange", function() {
"complete" === a.readyState && t.readyCallback()
})), (e = t.source || {}).concatemoji ? c(e.concatemoji) : e.wpemoji && e.twemoji && (c(e.twemoji), c(e.wpemoji)))
}(window, document, window._wpemojiSettings);
</script>
<style>
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="stylesheet" id="wp-block-library-css" href="/www.rahulvijan.tech/wp-includes/css/dist/block-library/style.min.css?ver=6.0.3" media="all">
<style id="global-styles-inline-css">
body {
--wp--preset--color--black: #000000;
--wp--preset--color--cyan-bluish-gray: #abb8c3;
--wp--preset--color--white: #ffffff;
--wp--preset--color--pale-pink: #f78da7;
--wp--preset--color--vivid-red: #cf2e2e;
--wp--preset--color--luminous-vivid-orange: #ff6900;
--wp--preset--color--luminous-vivid-amber: #fcb900;
--wp--preset--color--light-green-cyan: #7bdcb5;
--wp--preset--color--vivid-green-cyan: #00d084;
--wp--preset--color--pale-cyan-blue: #8ed1fc;
--wp--preset--color--vivid-cyan-blue: #0693e3;
--wp--preset--color--vivid-purple: #9b51e0;
--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
--wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
--wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
--wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
--wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
--wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');
--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');
--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');
--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');
--wp--preset--duotone--midnight: url('#wp-duotone-midnight');
--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');
--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');
--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');
--wp--preset--font-size--small: 13px;
--wp--preset--font-size--medium: 20px;
--wp--preset--font-size--large: 36px;
--wp--preset--font-size--x-large: 42px;
}
.has-black-color {
color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-color {
color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-color {
color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-color {
color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-color {
color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-color {
color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-color {
color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-color {
color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-color {
color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-color {
color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-color {
color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-color {
color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-background-color {
background-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-background-color {
background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-background-color {
background-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-background-color {
background-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-background-color {
background-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-background-color {
background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-background-color {
background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-background-color {
background-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-background-color {
background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-background-color {
background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-background-color {
background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-background-color {
background-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-border-color {
border-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-border-color {
border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-border-color {
border-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-border-color {
border-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-border-color {
border-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-border-color {
border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-border-color {
border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-border-color {
border-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-border-color {
border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-border-color {
border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-border-color {
border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-border-color {
border-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}
.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}
.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}
.has-luminous-vivid-orange-to-vivid-red-gradient-background {
background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}
.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}
.has-cool-to-warm-spectrum-gradient-background {
background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}
.has-blush-light-purple-gradient-background {
background: var(--wp--preset--gradient--blush-light-purple) !important;
}
.has-blush-bordeaux-gradient-background {
background: var(--wp--preset--gradient--blush-bordeaux) !important;
}
.has-luminous-dusk-gradient-background {
background: var(--wp--preset--gradient--luminous-dusk) !important;
}
.has-pale-ocean-gradient-background {
background: var(--wp--preset--gradient--pale-ocean) !important;
}
.has-electric-grass-gradient-background {
background: var(--wp--preset--gradient--electric-grass) !important;
}
.has-midnight-gradient-background {
background: var(--wp--preset--gradient--midnight) !important;
}
.has-small-font-size {
font-size: var(--wp--preset--font-size--small) !important;
}
.has-medium-font-size {
font-size: var(--wp--preset--font-size--medium) !important;
}
.has-large-font-size {
font-size: var(--wp--preset--font-size--large) !important;
}
.has-x-large-font-size {
font-size: var(--wp--preset--font-size--x-large) !important;
}
</style>
<link rel="stylesheet" id="mp-core-css" href="/www.rahulvijan.tech/wp-content/plugins/mp-core/public/css/mp-core-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="my-portfolio-style-css" href="/www.rahulvijan.tech/wp-content/themes/my-portfolio/style.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="bootstrap-styles-css" href="/www.rahulvijan.tech/wp-content/themes/my-portfolio/assets/bootstrap.min.css?ver=1666420614" media="">
<link rel="stylesheet" id="custom-styles-css" href="/www.rahulvijan.tech/wp-content/themes/my-portfolio/assets/style.css?ver=1666420614" media="">
<link rel="stylesheet" id="font-awesome-css" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css?ver=5.15.4" media="all">
<link rel="stylesheet" id="font-awesome-regular-css" href="https://use.fontawesome.com/releases/v5.15.4/css/regular.css?ver=5.15.4" media="all">
<script src="/www.rahulvijan.tech/wp-includes/js/jquery/jquery.min.js?ver=3.6.0" id="jquery-core-js"></script>
<script src="/www.rahulvijan.tech/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2" id="jquery-migrate-js"></script>
<script src="/www.rahulvijan.tech/wp-content/plugins/mp-core/public/js/mp-core-public.js?ver=1.0.0" id="mp-core-js"></script>
<link rel="https://api.w.org/" href="/www.rahulvijan.tech/wp-json/">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/www.rahulvijan.tech/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/www.rahulvijan.tech/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 6.0.3">
</head>
<body class="home blog hfeed no-sidebar">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-dark-grayscale"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0 0.49803921568627"></fefuncr><fefuncg type="table" tablevalues="0 0.49803921568627"></fefuncg><fefuncb type="table" tablevalues="0 0.49803921568627"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg>
<svg
xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-grayscale">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix>
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0 1"></fefuncr>
<fefuncg type="table" tablevalues="0 1"></fefuncg>
<fefuncb type="table" tablevalues="0 1"></fefuncb>
<fefunca type="table" tablevalues="1 1"></fefunca>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</filter>
</defs>
</svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-purple-yellow"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0.54901960784314 0.98823529411765"></fefuncr><fefuncg type="table" tablevalues="0 1"></fefuncg><fefuncb type="table" tablevalues="0.71764705882353 0.25490196078431"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg>
<svg
xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-blue-red">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix>
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0 1"></fefuncr>
<fefuncg type="table" tablevalues="0 0.27843137254902"></fefuncg>
<fefuncb type="table" tablevalues="0.5921568627451 0.27843137254902"></fefuncb>
<fefunca type="table" tablevalues="1 1"></fefunca>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</filter>
</defs>
</svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-midnight"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0 0"></fefuncr><fefuncg type="table" tablevalues="0 0.64705882352941"></fefuncg><fefuncb type="table" tablevalues="0 1"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg>
<svg
xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-magenta-yellow">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix>
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0.78039215686275 1"></fefuncr>
<fefuncg type="table" tablevalues="0 0.94901960784314"></fefuncg>
<fefuncb type="table" tablevalues="0.35294117647059 0.47058823529412"></fefuncb>
<fefunca type="table" tablevalues="1 1"></fefunca>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</filter>
</defs>
</svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-purple-green"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0.65098039215686 0.40392156862745"></fefuncr><fefuncg type="table" tablevalues="0 1"></fefuncg><fefuncb type="table" tablevalues="0.44705882352941 0.4"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg>
<svg
xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
<defs>
<filter id="wp-duotone-blue-orange">
<fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix>
<fecomponenttransfer color-interpolation-filters="sRGB">
<fefuncr type="table" tablevalues="0.098039215686275 1"></fefuncr>
<fefuncg type="table" tablevalues="0 0.66274509803922"></fefuncg>
<fefuncb type="table" tablevalues="0.84705882352941 0.41960784313725"></fefuncb>
<fefunca type="table" tablevalues="1 1"></fefunca>
</fecomponenttransfer>
<fecomposite in2="SourceGraphic" operator="in"></fecomposite>
</filter>
</defs>
</svg>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#primary">Skip to content</a>
<header class="container">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand brand" href="/www.rahulvijan.tech/">Rahul Vijan</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="/www.rahulvijan.tech/about">Who am i</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/www.rahulvijan.tech/#working">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/www.rahulvijan.tech/#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/www.rahulvijan.tech/#achievements">Certs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/www.rahulvijan.tech/#badges">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/www.rahulvijan.tech/#education">Education</a>
</li>
</ul>
<ul class="navbar-nav mb-2 mb-lg-0 social align-items-center">
<li class="nav-item">
<a class="nav-link download-resume" href="/www.rahulvijan.tech/wp-content/uploads/2022/10/RahulVijan_2Pager.pdf" target="_blank" download>Download Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.youtube.com/channel/UCZMXxOXaxWcd5QiUh7gSP6A/featured" target="_blank"><i class="fab fa-youtube"></i>Youtube</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/rahulv24/" target="_blank"><i class="fab fa-linkedin-in"></i>LinkedIn</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://twitter.com/rahulvijan1" target="_blank"><i class="fab fa-twitter"></i>Twitter</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/rv2442" target="_blank"><i class="fab fa-github"></i>GitHub</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://studentambassadors.microsoft.com/en-US/studentambassadors/profile/f6915098-8ee5-422b-b8af-58fc3cca7646" target="_blank"><i class="fab fa-microsoft"></i>MLSA</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main id="main-section" class="site-main">
<!-- Section 1 -->
<section class="container" id="bio">
<div class="row align-items-center">
<div class="col-md-6">
<div class="content">
<span class="tag">Aspiring Cloud Engineer</span>
<h1 class="heading">Cloud Enthusiast</h1>
<p>Hi, I am Rahul Vijan, currently an Under-Grad (Senior) in Electronics and Telecommunications at Xavier Institute of Engineering. My passion is to learn more about tech, especially the Cloud! Want some proof?
Checkout my portfolio.</p>
</div>
</div>
<div class="col-md-6 text-center">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/tatti2_bqual-1.jpg" alt="">
</div>
</div>
</section>
<!-- Section Working on -->
<section class="container" id="working">
<div class="row">
<div class="head">
<h2>What I’m working on</h2>
</div>
</div>
<!-- Working projects -->
<div class="row g-4">
<div class="col-md-6" style="order:1/">
<div class="card">
<a href="/www.rahulvijan.tech/projects/advanced-driverless-car-assistance-system" class="item">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/ADAS.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Advanced Driverless Car Assistance System</h5>
<span class="tag">Deep Learning</span>
</div>
</a>
<p class="card-text">Goal: Developing a Level 4/5 ADAS System within a Controlled Environment Approach: We are using a step by step approach, to reach our final goal. Where are we now? Generating Data for the Controlled Environment
...<br>
</p>
</div>
</div>
<div class="col-md-6" style="order:2/">
<div class="card">
<a href="/www.rahulvijan.tech/projects/certifications" class="item">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/certifications.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Certifications</h5>
<span class="tag">Exams</span>
</div>
</a>
<p class="card-text">Upcoming Certifications: Azure Solutions Architect -><br><br><br><br><br><br><br><br><br>
</p>
</div>
</div>
</div>
</section>
<!-- Projects list -->
<section class="container" id="projects">
<div class="row">
<div class="head">
<h2>Projects</h2>
</div>
</div>
<!-- Projects worked -->
<div class="row g-4">
<div class="col-md-6" style="order:1/">
<div class="card">
<a href="/www.rahulvijan.tech/projects/highly-available-web-solution" class="item">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/high-availability.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Highly Available Web Solution</h5>
<span class="tag">Cloud</span>
</div>
</a>
<p class="card-text">This project makes my "Cloud Storage Web Application with 2F Auth" Highly Available using Azure Technologies, (The Scope of this project is IAAS Based) So the new Infrastructure and Features/Configs are: Solution
will be hosted on 2 Machines. Vms be connected to a Load Balancer. Will use Remote MSC SQL... <br>
<span>Role: Azure Developer Intern</span>
</p>
</div>
</div>
<div class="col-md-6" style="order:2/">
<div class="card">
<a href="/www.rahulvijan.tech/projects/cloud-storage-web-application-with-face-recognition-as-2-factor-auth" class="item">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/scloud_dashboard.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Cloud Storage Web App with Face Recognition as 2F Auth</h5>
<span class="tag">Web App</span>
</div>
</a>
<p class="card-text">WHAT IS SCLOUD? SCloud is a Cloud Storage web application where you can store files and share them with any registered user. You can also have 2-factor authentication to protect your data by face recognition.
Tech Stack: ASP.NET Python JS HTML Windows | Windows IIS Microsoft Azure What I... <br><br><br>
<span>Role: ASP.NET Developer Intern</span>
</p>
</div>
</div>
<div class="col-md-6" style="order:3/">
<div class="card">
<a href="/www.rahulvijan.tech/projects/iot-surveillance-car" class="item">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/iot-car.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">IoT Surveillance Car</h5>
<span class="tag">Hardware | IoT</span>
</div>
</a>
<p class="card-text">Iot-Surveillance-Car This is a IOT Based Surveillance Car which can be controlled, monitored and, tracked globally. The camera on the front of the car can also be monitored globally. It can go anywhere where
sim connection is available. Problem Statement To make a Surveillance Car which can be controlled and... <br>
</p>
</div>
</div>
<div class="col-md-6" style="order:5/">
<div class="card">
<a href="/www.rahulvijan.tech/projects/16-bit-scientific-calculator-on-fpga" class="item">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/fpga_board.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">16 Bit Scientific Calculator on FPGA</h5>
<span class="tag">Hardware</span>
</div>
</a>
<p class="card-text">16 Bit Scientific Calculator Using Xilinx ISE 14.7(Verilog) on Spartan 6 FPGA Dev Board Intro A calculator's function is to do accurate calculations promptly. It is obvious that, to the greatest extent feasible,
a calculator should free the user from the need to do mental calculations and rely on paper.... <br><br>
</p>
</div>
</div>
</div>
<div class="learn-more">
<a href="/www.rahulvijan.tech/all-projects/" class="btn btn-primary">See More</a>
</div>
</section>
<!-- Experience -->
<section class="container" id="experience">
<div class="row">
<div class="head">
<h2>Experience</h2>
</div>
</div>
<div class="row g-4">
<div class="col-md-12" style="order:1/">
<div >
<div class="card-body">
<h5 class="card-title">1) Microsoft Learn Student Ambassador</h5>
<span class="title">Microsoft, MLSA-Beta</span><br>
<span class="tag">Mumbai, Maharashtra, India | Jan, 2023 - Present</span><br><br>
<ul>
<li>Learned basics of Cloud Computing, Version Control(Git) & Hosting(GitHub Actions & Azure Static Web Pages), Services by Microsoft Azure</li>
<li>Shared what I learned and am learning with different Student Communities.</li>
<li>Organized and Hosted 3 consecutive events on AZ 900 - Azure Fundamentals, delivered a session to an audience of 100 people.</li>
<li>Organized a Cloud Skills Challenge on AZ 900</li>
</ul>
</div>
</div>
</div>
<div class="col-md-12" style="order:2/">
<div >
<div class="card-body">
<h5 class="card-title">2) Cyber Security Engineer Intern</h5>
<span class="title">Virtually Testing Foundation, Cyber Security Engineer Intern</span><br>
<span class="tag">LA, CA, USA (Remote) | May, 2022 - July, 2022</span><br><br>
<ul>
<li>Learned and Implemented MITRE ATT&CK, Basic Pentesting, Android Security, OSINT, Cloud Security and Networking.</li>
</ul>
</div>
</div>
</div>
<div class="col-md-12" style="order:3/">
<div >
<div class="card-body">
<h5 class="card-title">3) Internet of Things Developer Intern</h5>
<span class="title">IoTIoT.in, Internet of Things Developer Intern</span><br>
<span class="tag">Pune, Maharashtra, India (Remote) | February, 2022 - June, 2022</span><br><br>
<ul>
<li>Developed and deployed a Modbus RTU to Modbus TCP gateway enabling communication between Serial and TCP Ports.</li>
<li>Managed Project Repository on GitLab which included CI/CD environment, Issues, Wiki, ReadMe, and Milestones.</li>
</ul>
</div>
</div>
</div>
<div class="col-md-12" style="order:4/">
<div >
<div class="card-body">
<h5 class="card-title">4) Azure Developer Intern</h5>
<span class="title">Microsoft (Future Ready Talent), Azure Developer Intern</span><br>
<span class="tag">Remote | March, 2022 - April, 2022</span><br><br>
<ul>
<li>Worked on Sharing a Common Disk between 2 Load Balanced Servers using Active Directory Domain Services via Failover Cluster in an Availability Set, Proximity Placement Group, for HA.</li>
<li>Azure Shared Disk is utilized by the Web App to make data shareable locally between 2 servers resulting in High Availability.</li>
</ul>
<h5 class="experience_projects_related">Projects Related</h5>
<ul>
<li><a href="/www.rahulvijan.tech/projects/highly-available-web-solution">Highly Available Web Solution</a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-12" style="order:5/">
<div >
<div class="card-body">
<h5 class="card-title">5) ASP.NET Developer Intern</h5>
<span class="title">CMP Infotech, ASP.NET Intern</span><br>
<span class="tag">Mumbai, Maharashtra, India | December, 2021 - January, 2022</span><br><br>
<ul>
<li>Built a Cloud Storage Web Application with Face Recognition as a 2 Factor Authentication.</li>
<li>Handled base 64 strings from frontend to backend, rebuilding images that were utilized for recognition and registration.</li>
<li>Working with MSC SQL Database for RDBMS User Data,</li>
<li>Protection from SQL Injection (parameterized queries).</li>
<li>Technical Documentation.</li>
</ul>
<h5 class="experience_projects_related">Projects Related</h5>
<ul>
<li><a href="/www.rahulvijan.tech/projects/cloud-storage-web-application-with-face-recognition-as-2-factor-auth">Cloud Storage Web Application with Face Recognition as 2 Factor Auth</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Achievements Type - Certifications -->
<section class="container" id="achievements">
<div class="row">
<div class="head">
<h2>Certifications</h2>
</div>
</div>
<div class="row g-4">
<div class="col-md-6" style="order:1/">
<a href="https://www.credential.net/6ac28380-4d6a-4105-b304-270de61cab00" target="_blank">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/gcp_pca.png" class="card-img-top" alt="...">
<h5>Google Cloud Certified Professional Cloud Architect</h5>
</div>
</a>
</div>
<div class="col-md-6" style="order:2/">
<a href="https://www.credly.com/badges/f98c861a-7d56-4e94-8c4b-b5457bd079d6/public_url" target="_blank">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2023/azure-administrator-associate-600x600.png" class="card-img-top" alt="...">
<h5>Azure Administrator</h5>
</div>
</a>
</div>
<div class="col-md-6" style="order:3/">
<a href="https://www.credly.com/badges/f7411dbd-fdb4-45b1-8cdd-7df88c6bad1d?source=linked_in_profile" target="_blank">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/aws_ccp.png" class="card-img-top" alt="...">
<h5>AWS Certified Cloud Practitioner</h5>
</div>
</a>
</div>
<div class="col-md-6" style="order:4/">
<a href="https://www.credly.com/badges/21dabf16-2ea4-4f67-9ad6-b7bfc8260a08?source=linked_in_profile" target="_blank">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/ai900.png" class="card-img-top" alt="...">
<h5>Microsoft Certified: Azure AI Fundamentals</h5>
</div>
</a>
</div>
<div class="col-md-6" style="order:5/">
<a href="https://www.credly.com/badges/72e2209d-87d4-49d2-a6be-248023edfae5?source=linked_in_profile" target="_blank">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/az900.png" class="card-img-top" alt="...">
<h5>Microsoft Certified: Azure Fundamentals</h5>
</div>
</a>
</div>
<div class="col-md-6" style="order:6/">
<a href="https://www.credly.com/badges/b597d7ee-7512-4262-a1b8-3607d92d33b7/public_url">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/sc900.png" class="card-img-top" alt="...">
<h5>Microsoft Certified: Security, Compliance, and Identity Fundamentals</h5>
</div>
</a>
</div>
</div>
</section>
<!-- Achievements Type - Badges -->
<section class="container" id="badges">
<div class="row">
<div class="head">
<h2>Badges & Skills</h2>
</div>
</div>
<div class="row g-4">
<div class="col-md-6" style="order:1/">
<a href="https://www.credly.com/badges/3b7eaab9-bf92-47c1-b842-1fe1e77c55be?source=linked_in_profile">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/dotnet.png" class="card-img-top" alt="...">
<h5>MTA: Software Development Fundamentals</h5>
</div>
</a>
</div>
<div class="col-md-6" style="order:2/">
<a href="https://www.credly.com/badges/3d2d4257-1797-4c8b-b81d-67a98606b6a3?source=linked_in_profile">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/python.png" class="card-img-top" alt="...">
<h5>MTA: Introduction to Programming Using Python</h5>
</div>
</a>
</div>
<div class="col-md-6" style="order:3/">
<a href="https://cs.lpi.org/caf/Xamman/certification/verify/LPI000520648/aat2zwk5bt">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2023/LPI-Linux-Essentials.png" class="card-img-top" alt="...">
<h5>LPI Linux Essentials</h5>
</div>
</a>
</div>
<div class="col-md-6" style="order:4/">
<a href="https://www.cloudskillsboost.google/public_profiles/6a3bc05b-e4ca-4c07-9781-fb3352f66560">
<div class="card">
<img src="/www.rahulvijan.tech/wp-content/uploads/2022/10/google-cloud-skills-profile.png" class="card-img-top" alt="...">
<h5>Google Cloud Skills Profile</h5>
</div>
</a>
</div>
</div>
<div class="learn-more">
<a href="/www.rahulvijan.tech/badges-and-skills/" class="btn btn-primary">See More</a>
</div>
</section>
<!-- Education -->
<section class="container" id="education">
<div class="row">
<div class="head">
<h2>Education</h2>
</div>
</div>
<div class="col-md-12 education_listing" style="order:1/">
<div>
<div class="card-body">
<h5 class="card-title">SSC</h5>
<span class="tag">Don Bosco High School, India June, 2005 - March, 2017</span><br><br>
</div>
</div>
</div>
<div class="col-md-12 education_listing" style="order:2/">
<div>
<div class="card-body">
<h5 class="card-title">HSC</h5>
<span class="tag">Guru Nanak Khalsa College of Science, Commerce and Arts September, 2017 - March, 2019</span><br><br>
</div>
</div>
</div>
<div class="row g-4">
<div class="col-md-12 education_listing" style="order:3/">
<div>
<div class="card-body">
<h5 class="card-title">B.E in Electronics and Telecommunications Engineering</h5>
<span class="tag">Xavier Institute of Engineering, Mumbai University September, 2019 - May, 2023</span><br>
<p><strong>Grade: 8.6 CGPA (SEM 6)</strong></p>
</div>
</div>
</div>
<div class="col-md-12 education_listing" style="order:4/">
<div>
<div class="card-body">
<a href="https://graduation.udacity.com/confirm/KVEGSUYP"><h5 class="card-title">Cloud Architect Using Microsoft Azure, Scholarship Nanodegree</h5></a>
<span class="tag">Udacity November, 2021 - August, 2022</span><br><br>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- #main -->
</div>
<!-- #page -->
<script src="/www.rahulvijan.tech/wp-content/themes/my-portfolio/js/navigation.js?ver=1.0.0" id="my-portfolio-navigation-js"></script>
<script src="/www.rahulvijan.tech/wp-content/themes/my-portfolio/assets/bootstrap.bundle.min.js?ver=1666420614" id="bootstrap-js-js"></script>
<script src="/www.rahulvijan.tech/wp-content/themes/my-portfolio/js/custom.js?ver=1666420614" id="custom-js-js"></script>
<script>
function getCookie(t) {
for (var e = t + "=", n = decodeURIComponent(document.cookie).split(";"), o = 0; o < n.length; o++) {
for (var i = n[o];
" " == i.charAt(0);) i = i.substring(1);
if (0 == i.indexOf(e)) return i.substring(e.length, i.length)
}
return ""
}
getCookie("hostinger") && (document.cookie = "hostinger=;expires=Thu, 01 Jan 1970 00:00:01 GMT;", location.reload());
var wordpressAdminBody = document.getElementsByClassName("wp-admin")[0],
notification = document.getElementsByClassName("notice notice-success is-dismissible"),
hostingerLogo = document.getElementsByClassName("hlogo"),
mainContent = document.getElementsByClassName("notice_content")[0];
if (null != wordpressAdminBody && 0 < notification.length && null != mainContent) {
var googleFont = document.createElement("link");
googleFontHref = document.createAttribute("href"), googleFontRel = document.createAttribute("rel"), googleFontHref.value = "https://fonts.googleapis.com/css?family=Roboto:300,400,600,700", googleFontRel.value = "stylesheet", googleFont.setAttributeNode(googleFontHref), googleFont.setAttributeNode(googleFontRel);
var css = "@media only screen and (max-width: 576px) {#main_content {max-width: 320px !important;} #main_content h1 {font-size: 30px !important;} #main_content h2 {font-size: 40px !important; margin: 20px 0 !important;} #main_content p {font-size: 14px !important;} #main_content .content-wrapper {text-align: center !important;}} @media only screen and (max-width: 781px) {#main_content {margin: auto; justify-content: center; max-width: 445px;}} @media only screen and (max-width: 1325px) {.web-hosting-90-off-image-wrapper {position: absolute; max-width: 95% !important;} .notice_content {justify-content: center;} .web-hosting-90-off-image {opacity: 1;}} @media only screen and (min-width: 769px) {.notice_content {justify-content: space-between;} #main_content {margin-left: 5%; max-width: 445px;} .web-hosting-90-off-image-wrapper {position: absolute; display: flex; justify-content: center; width: 50%; margin-left: 45%;}} .web-hosting-90-off-image {max-width: 90%;} .content-wrapper {min-height: 454px; display: flex; flex-direction: column; justify-content: center; z-index: 5} .notice_content {display: flex; align-items: center;} * {-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;} .upgrade_button_red_sale{box-shadow: 0 2px 4px 0 rgba(255, 69, 70, 0.2); width: 264px; border: 0; border-radius: 3px; background-color: #FF5C62 !important; padding: 15px 55px !important; font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 600; color: #ffffff;} .upgrade_button_red_sale:hover{color: #ffffff !important; background: #d10303 !important;}",
style = document.createElement("style"),
sheet = window.document.styleSheets[0];
style.styleSheet ? style.styleSheet.cssText = css : style.appendChild(document.createTextNode(css)), document.getElementsByTagName("head")[0].appendChild(style), document.getElementsByTagName("head")[0].appendChild(googleFont);
var button = document.getElementsByClassName("upgrade_button_red")[0],
link = button.parentElement;
link.setAttribute("href", "https://www.hostinger.com/hosting-starter-offer?utm_source=000webhost&utm_medium=panel&utm_campaign=000-wp"), link.innerHTML = '<button class="upgrade_button_red_sale">Claim Deal<\/button>', (notification = notification[0]).setAttribute("style", "padding-bottom: 0; padding-top: 5px; background-color: #040713; background-size: cover; background-repeat: no-repeat; color: #ffffff; border-left-color: #040713;"), notification.className = "notice notice-error is-dismissible";
var mainContentHolder = document.getElementById("main_content");
mainContentHolder.setAttribute("style", "padding: 0;"), hostingerLogo[0].remove();
var h1Tag = notification.getElementsByTagName("H1")[0];
h1Tag.className = "000-h1", h1Tag.innerHTML = "Black Friday", h1Tag.setAttribute("style", 'color: white; font-family: "Roboto", sans-serif; font-size: 48px; font-weight: 700;');
var h2Tag = document.createElement("H2");
h2Tag.innerHTML = "Up to 90% off 4-year hosting plans + free domain, SSL & DDoS protection", h2Tag.setAttribute("style", 'color: white; margin: 10px 0 15px 0; font-family: "Roboto", sans-serif; font-size: 16px; font-weight: 400; line-height: 1;'), h1Tag.parentNode.insertBefore(h2Tag, h1Tag.nextSibling);
var paragraph = notification.getElementsByTagName("p")[0];
paragraph.innerHTML = "$<span style='font-size: 80px;'>2.49<\/span>/mo", paragraph.setAttribute("style", 'font-family: "Roboto", sans-serif; font-size: 48px; font-weight: 700; margin: 0;');
var list = notification.getElementsByTagName("UL")[0];
list.remove();
var org_html = mainContent.innerHTML,
new_html = '<div class="content-wrapper">' + mainContent.innerHTML + '<\/div><div class="web-hosting-90-off-image-wrapper"><img class="web-hosting-90-off-image" src="https://cdn.000webhost.com/000webhost/promotions/bf-2022-bottom-banner.png"><\/div>';
mainContent.innerHTML = new_html;
var saleImage = mainContent.getElementsByClassName("web-hosting-90-off-image")[0]
}
</script>
</body>
</html>