-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
767 lines (741 loc) · 30.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
<!DOCTYPE html>
<html>
<head>
<title>SkillHit</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="w3.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Raleway" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<style>
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Raleway", sans-serif;
}
body,
html {
height: 100%;
line-height: 1.8;
}
/* Full height image header */
.bgimg-1 {
background-position: center;
background-size: cover;
background-image: url("Cyber-security.jpg");
min-height: 100%;
}
/*
.w3-bar .w3-button {
padding: 16px;
}*/
.w3-bar-item-img {
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
outline: none;
border: none;
}
#About,
#Team,
#Work,
#Pricing,
#Contact {
padding-top: 4%;
padding-bottom: 1.5%;
}
#myNavbar {
background: linear-gradient(
180deg,
rgb(231, 228, 228),
rgb(133, 131, 131)
);
}
.tempid {
background: white;
}
</style>
</head>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card" id="myNavbar">
<a
href="#home"
class="w3-bar-item w3-button w3-wide"
style="
background: linear-gradient(
180deg,
rgb(231, 228, 228),
rgb(133, 131, 131)
);
"
><img
class="w3-bar-item-img"
src="SKlogo.png"
alt="SkillHit"
/></a>
<!-- Right-sided navbar links -->
<div class="w3-right w3-hide-small">
<a href="#about" class="w3-bar-item w3-button" id="About"
>ABOUT</a
>
<a href="#team" class="w3-bar-item w3-button" id="Team"
><i class="fa fa-user"></i> TEAM</a
>
<a href="#work" class="w3-bar-item w3-button" id="Work"
><i class="fa fa-th"></i> WORK</a
>
<a
href="#pricing"
class="w3-bar-item w3-button"
id="Pricing"
><i class="fa fa-usd"></i> PRICING</a
>
<a
href="#contact"
class="w3-bar-item w3-button"
id="Contact"
><i class="fa fa-envelope"></i> CONTACT</a
>
</div>
<!-- Hide right-floated links on small screens and replace them with a menu icon -->
<a
href="javascript:void(0)"
class="w3-bar-item w3-button w3-right w3-hide-large w3-hide-medium"
onclick="w3_open()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<!-- Sidebar on small screens when clicking the menu icon -->
<nav
class="w3-sidebar w3-bar-block w3-black w3-card w3-animate-left w3-hide-medium w3-hide-large"
style="display: none"
id="mySidebar">
<a
href="javascript:void(0)"
onclick="w3_close()"
class="w3-bar-item w3-button w3-large w3-padding-16"
>Close ×</a
>
<a href="#about" onclick="w3_close()" class="w3-bar-item w3-button"
>ABOUT</a
>
<a href="#team" onclick="w3_close()" class="w3-bar-item w3-button"
>TEAM</a
>
<a href="#work" onclick="w3_close()" class="w3-bar-item w3-button"
>WORK</a
>
<a
href="#pricing"
onclick="w3_close()"
class="w3-bar-item w3-button"
>PRICING</a
>
<a
href="#contact"
onclick="w3_close()"
class="w3-bar-item w3-button"
>CONTACT</a
>
</nav>
<!-- Header with full-height image -->
<header class="bgimg-1 w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-left w3-text-white" style="padding: 48px">
<span class="w3-jumbo w3-hide-small"
>Start something that matters</span
><br />
<span class="w3-xxlarge w3-hide-large w3-hide-medium"
>Start something that matters</span
><br />
<span class="w3-large"
>Stop wasting valuable time with projects that just isn't
you.</span
>
<p>
<a
href="#about"
class="w3-button w3-white w3-padding-large w3-large w3-margin-top w3-opacity w3-hover-opacity-off"
>Learn more and start today</a
>
</p>
</div>
<div
class="w3-display-bottomleft w3-text-grey w3-large"
style="padding: 24px 48px">
<a
href="https://www.facebook.com/lokesh.koppinedi"
target="_blank"
><i class="fa fa-facebook-official w3-hover-opacity"></i
></a>
<a
href="https://instagram.com/use.ralert?utm_source=qr&igshid=ZDc4ODBmNjlmNQ%3D%3D"
target="_blank"
><i class="fa fa-instagram w3-hover-opacity"></i
></a>
<a href="https://github.com/skydrige" target="_blank"
><i class="fa fa-github w3-hover-opacity"></i
></a>
<a href="https://t.me/skydrige" target="_blank"
><i class="fa fa-telegram w3-hover-opacity"></i
></a>
<a
href="https://twitter.com/KLokesh64535236?t=UU75aFZk_-dqB_AXsyXXGg&s=09"
target="_blank"
><i class="fa fa-twitter w3-hover-opacity"></i
></a>
<a
href="https://www.linkedin.com/in/k-lokesh-7716ab233"
target="_blank"
><i class="fa fa-linkedin w3-hover-opacity"></i
></a>
</div>
</header>
<!-- About Section -->
<div class="w3-container" style="padding: 128px 16px" id="about">
<h3 class="w3-center">ABOUT THE COMPANY</h3>
<p class="w3-center w3-large">Key features of our company</p>
<div class="w3-row-padding w3-center" style="margin-top: 64px">
<div class="w3-quarter">
<i
class="fa fa-desktop w3-margin-bottom w3-jumbo w3-center"></i>
<p class="w3-large">Responsive</p>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore.
</p> -->
</div>
<div class="w3-quarter">
<i class="fa fa-heart w3-margin-bottom w3-jumbo"></i>
<p class="w3-large">Passion</p>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore.
</p> -->
</div>
<div class="w3-quarter">
<i class="fa fa-diamond w3-margin-bottom w3-jumbo"></i>
<p class="w3-large">Design</p>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore.
</p> -->
</div>
<div class="w3-quarter">
<i class="fa fa-cog w3-margin-bottom w3-jumbo"></i>
<p class="w3-large">Support</p>
<!-- <p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore.
</p> -->
</div>
</div>
</div>
<!-- Promo Section - "We know design" -->
<div class="w3-container w3-light-grey" style="padding: 128px 16px">
<div class="w3-row-padding">
<div class="w3-col m6">
<h3>We know design.</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod<br />tempor incididunt ut labore et
dolore.
</p>
<p>
<a href="#work" class="w3-button w3-black"
><i class="fa fa-th"> </i> View Our Works</a
>
</p>
</div>
<div class="w3-col m6">
<img
class="w3-image w3-round-large"
src="cpts.jpg"
alt="CPTS"
width="700"
height="394" />
</div>
</div>
</div>
<!-- Team Section -->
<div class="w3-container" style="padding: 128px 16px" id="team">
<h3 class="w3-center">THE TEAM</h3>
<p class="w3-center w3-large">The ones who runs this company</p>
<div class="w3-row-padding w3-grayscale" style="margin-top: 64px">
<div class="w3-col l3 m6 w3-margin-bottom">
<div class="w3-card">
<img
class="tempid"
src="TempID.png"
alt="John"
style="width: 100%"
; />
<div class="w3-container">
<h3>XXXX</h3>
<p class="w3-opacity">CEO & Founder</p>
<!-- <p>
Phasellus eget enim eu lectus faucibus
vestibulum. Suspendisse sodales pellentesque
elementum.
</p> -->
<p>
<button
class="w3-button w3-light-grey w3-block">
<i class="fa fa-envelope"></i> Contact
</button>
</p>
</div>
</div>
</div>
<div class="w3-col l3 m6 w3-margin-bottom">
<div class="w3-card">
<img
class="tempid"
src="TempID.png"
alt="Jane"
style="width: 100%"
; />
<div class="w3-container">
<h3>XXXX</h3>
<p class="w3-opacity">Art Director</p>
<!-- <p>
Phasellus eget enim eu lectus faucibus
vestibulum. Suspendisse sodales pellentesque
elementum.
</p> -->
<p>
<button
class="w3-button w3-light-grey w3-block">
<i class="fa fa-envelope"></i> Contact
</button>
</p>
</div>
</div>
</div>
<div class="w3-col l3 m6 w3-margin-bottom">
<div class="w3-card">
<img
class="tempid"
src="TempID.png"
alt="Mike"
style="width: 100%"
; />
<div class="w3-container">
<h3>XXXX</h3>
<p class="w3-opacity">Security Auditor</p>
<!-- <p>
Phasellus eget enim eu lectus faucibus
vestibulum. Suspendisse sodales pellentesque
elementum.
</p> -->
<p>
<button
class="w3-button w3-light-grey w3-block">
<i class="fa fa-envelope"></i> Contact
</button>
</p>
</div>
</div>
</div>
<div class="w3-col l3 m6 w3-margin-bottom">
<div class="w3-card">
<img
class="tempid"
src="TempID.png"
alt="Dan"
style="width: 100%"
; />
<div class="w3-container">
<h3>XXXX</h3>
<p class="w3-opacity">Security Architect</p>
<!-- <p>
Phasellus eget enim eu lectus faucibus
vestibulum. Suspendisse sodales pellentesque
elementum.
</p> -->
<p>
<button
class="w3-button w3-light-grey w3-block">
<i class="fa fa-envelope"></i> Contact
</button>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Promo Section "Statistics" -->
<div class="w3-container w3-row w3-center w3-dark-grey w3-padding-64">
<div class="w3-quarter">
<span class="w3-xxlarge">0+</span>
<br />Partners
</div>
<div class="w3-quarter">
<span class="w3-xxlarge">0+</span>
<br />Projects Done
</div>
<div class="w3-quarter">
<span class="w3-xxlarge">0+</span>
<br />Happy Clients
</div>
<div class="w3-quarter">
<span class="w3-xxlarge">0+</span>
<br />Meetings
</div>
</div>
<!-- Work Section -->
<div class="w3-container" style="padding: 128px 16px" id="work">
<h3 class="w3-center">OUR WORK</h3>
<p class="w3-center w3-large">What we've done for people</p>
<div class="w3-row-padding" style="margin-top: 64px">
<div class="w3-col l3 m6">
<img
src="https://www.w3schools.com/w3images/tech_mic.jpg0"
style="width: 100%"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="XXXX" />
</div>
<div class="w3-col l3 m6">
<img
src="https://www.w3schools.com/w3images/tech_phone.jpg0"
style="width: 100%"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="XXXX" />
</div>
<div class="w3-col l3 m6">
<img
src="https://www.w3schools.com/w3images/tech_drone.jpg0"
style="width: 100%"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="XXXX" />
</div>
<div class="w3-col l3 m6">
<img
src="https://www.w3schools.com/w3images/tech_sound.jpg0"
style="width: 100%"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="XXXX" />
</div>
</div>
<div class="w3-row-padding w3-section">
<div class="w3-col l3 m6">
<img
src="https://www.w3schools.com/w3images/tech_tablet.jpg0"
style="width: 100%"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="XXXX" />
</div>
<div class="w3-col l3 m6">
<img
src="https://www.w3schools.com/w3images/tech_camera.jpg0"
style="width: 100%"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="XXXX" />
</div>
<div class="w3-col l3 m6">
<img
src="https://www.w3schools.com/w3images/tech_typewriter.jpg0"
style="width: 100%"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="XXXX" />
</div>
<div class="w3-col l3 m6">
<img
src="https://www.w3schools.com/w3images/tech_tableturner.jpg0"
style="width: 100%"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="XXXX" />
</div>
</div>
</div>
<!-- Modal for full size images on click-->
<div
id="modal01"
class="w3-modal w3-black"
onclick="this.style.display='none'">
<span
class="w3-button w3-xxlarge w3-black w3-padding-large w3-display-topright"
title="Close Modal Image"
>×</span
>
<div
class="w3-modal-content w3-animate-zoom w3-center w3-transparent w3-padding-64">
<img id="img01" class="w3-image" />
<p id="caption" class="w3-opacity w3-large"></p>
</div>
</div>
<!-- Skills Section -->
<div class="w3-container w3-light-grey w3-padding-64">
<div class="w3-row-padding">
<div class="w3-col m6">
<h3>Our Skills.</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod<br />
tempor incididunt ut labore et dolore.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod<br />
tempor incididunt ut labore et dolore.
</p>
</div>
<div class="w3-col m6">
<p class="w3-wide">
<i class="fa fa-user-secret w3-margin-right"></i
>Privilege Auditing
</p>
<div class="w3-grey">
<div
class="w3-container w3-dark-grey w3-center"
style="width: 90%">
90%
</div>
</div>
<p class="w3-wide">
<i class="fa fa-shield w3-margin-right"></i>Defensive
Mechanisms
</p>
<div class="w3-grey">
<div
class="w3-container w3-dark-grey w3-center"
style="width: 85%">
85%
</div>
</div>
<p class="w3-wide">
<i class="fa fa-balance-scale w3-margin-right"></i
>Optimised Security
</p>
<div class="w3-grey">
<div
class="w3-container w3-dark-grey w3-center"
style="width: 87%">
87%
</div>
</div>
</div>
</div>
</div>
<!-- Pricing Section -->
<div
class="w3-container w3-center w3-dark-grey"
style="padding: 128px 16px"
id="pricing">
<h3>PRICING</h3>
<p class="w3-large">Choose a pricing plan that fits your needs.</p>
<div class="w3-row-padding" style="margin-top: 64px">
<div class="w3-third w3-section">
<ul class="w3-ul w3-white w3-hover-shadow">
<li class="w3-black w3-xlarge w3-padding-32">Basic</li>
<li class="w3-padding-16"><b>10GB</b> Storage</li>
<li class="w3-padding-16"><b>10</b> Emails</li>
<li class="w3-padding-16"><b>10</b> Domains</li>
<li class="w3-padding-16"><b>Endless</b> Support</li>
<li class="w3-padding-16">
<h2 class="w3-wide">$ 10</h2>
<span class="w3-opacity">per month</span>
</li>
<li class="w3-light-grey w3-padding-24">
<button class="w3-button w3-black w3-padding-large">
Sign Up
</button>
</li>
</ul>
</div>
<div class="w3-third">
<ul class="w3-ul w3-white w3-hover-shadow">
<li class="w3-red w3-xlarge w3-padding-48">Pro</li>
<li class="w3-padding-16"><b>25GB</b> Storage</li>
<li class="w3-padding-16"><b>25</b> Emails</li>
<li class="w3-padding-16"><b>25</b> Domains</li>
<li class="w3-padding-16"><b>Endless</b> Support</li>
<li class="w3-padding-16">
<h2 class="w3-wide">$ 25</h2>
<span class="w3-opacity">per month</span>
</li>
<li class="w3-light-grey w3-padding-24">
<button class="w3-button w3-black w3-padding-large">
Sign Up
</button>
</li>
</ul>
</div>
<div class="w3-third w3-section">
<ul class="w3-ul w3-white w3-hover-shadow">
<li class="w3-black w3-xlarge w3-padding-32">
Premium
</li>
<li class="w3-padding-16"><b>50GB</b> Storage</li>
<li class="w3-padding-16"><b>50</b> Emails</li>
<li class="w3-padding-16"><b>50</b> Domains</li>
<li class="w3-padding-16"><b>Endless</b> Support</li>
<li class="w3-padding-16">
<h2 class="w3-wide">$ 50</h2>
<span class="w3-opacity">per month</span>
</li>
<li class="w3-light-grey w3-padding-24">
<button class="w3-button w3-black w3-padding-large">
Sign Up
</button>
</li>
</ul>
</div>
</div>
</div>
<!-- Contact Section -->
<div
class="w3-container w3-light-grey"
style="padding: 128px 16px"
id="contact">
<h3 class="w3-center">CONTACT</h3>
<p class="w3-center w3-large">
Lets get in touch. Send us a message:
</p>
<div style="margin-top: 48px">
<p>
<i
class="fa fa-map-marker fa-fw w3-xxlarge w3-margin-right"></i>
Hyderabad, India
</p>
<p>
<i class="fa fa-phone fa-fw w3-xxlarge w3-margin-right"></i>
Phone: +91 xxxxxxxxxx
</p>
<p>
<i class="fa fa-envelope fa-fw w3-xxlarge w3-margin-right">
</i>
Email: XXXXXXX@mail.org
</p>
<br />
<form action="/action_page.php" target="_blank">
<p>
<input
class="w3-input w3-border"
type="text"
placeholder="Name"
required
name="Name" />
</p>
<p>
<input
class="w3-input w3-border"
type="text"
placeholder="Email"
required
name="Email" />
</p>
<p>
<input
class="w3-input w3-border"
type="text"
placeholder="Subject"
required
name="Subject" />
</p>
<p>
<input
class="w3-input w3-border"
type="text"
placeholder="Message"
required
name="Message" />
</p>
<p>
<button class="w3-button w3-black" type="submit">
<i class="fa fa-paper-plane"></i> SEND MESSAGE
</button>
</p>
</form>
<!-- Image of location/map -->
<img
src="https://www.w3schools.com/w3images/map.jpg"
class="w3-image w3-greyscale"
style="width: 100%; margin-top: 48px" />
</div>
</div>
<!-- Footer. This section contains an ad for W3Schools Spaces. You can leave it to support us. -->
<footer class="w3-center w3-black w3-padding-64">
<a href="#home" class="w3-button w3-light-grey"
><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a
>
<div class="w3-xlarge w3-section">
<a
href="https://www.facebook.com/lokesh.koppinedi"
target="_blank"
><i class="fa fa-facebook-official w3-hover-opacity"></i
></a>
<a
href="https://instagram.com/use.ralert?utm_source=qr&igshid=ZDc4ODBmNjlmNQ%3D%3D"
target="_blank"
><i class="fa fa-instagram w3-hover-opacity"></i
></a>
<a href="https://github.com/skydrige" target="_blank"
><i class="fa fa-github w3-hover-opacity"></i
></a>
<a href="https://t.me/skydrige" target="_blank"
><i class="fa fa-telegram w3-hover-opacity"></i
></a>
<a
href="https://twitter.com/KLokesh64535236?t=UU75aFZk_-dqB_AXsyXXGg&s=09"
target="_blank"
><i class="fa fa-twitter w3-hover-opacity"></i
></a>
<a
href="https://www.linkedin.com/in/k-lokesh-7716ab233"
target="_blank"
><i class="fa fa-linkedin w3-hover-opacity"></i
></a>
</div>
<p class="w3-small">
<!-- This website was made with W3schools Spaces. Make your own free
website today! -->
</p>
<!-- <a
class="w3-button w3-round-xxlarge w3-small w3-light-grey w3-margin-bottom"
href="https://www.w3schools.com/spaces"
target="_blank"
>Start now</a
> -->
</footer>
<script>
// Modal Image Gallery
function onClick(element) {
document.getElementById("img01").src = element.src;
document.getElementById("modal01").style.display = "block";
var captionText = document.getElementById("caption");
captionText.innerHTML = element.alt;
}
// Toggle between showing and hiding the sidebar when clicking the menu icon
var mySidebar = document.getElementById("mySidebar");
function w3_open() {
if (mySidebar.style.display === "block") {
mySidebar.style.display = "none";
} else {
mySidebar.style.display = "block";
}
}
// Close the sidebar with the close button
function w3_close() {
mySidebar.style.display = "none";
}
</script>
</body>
</html>