-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
704 lines (700 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
<!DOCTYPE html>
<html lang="en" data-bs-theme="auto" class="container-fluid m-0 p-0 h-100">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home - Project Gatekeeper</title>
<link href="/assets/css/global.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" />
</head>
<body>
<!-- header -->
<header class="sticky-top">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid d-flex justify-content-between">
<div class="navbar-brand" href="/">
<i class="bi bi-shield-shaded"></i>
<a class="navbar-brand" href="/">Project <br class="d-flex d-md-none">Gatekeeper</a>
</div>
<div>
<button class="btn btn-outline-secondary navbar-toggler" data-bs-toggle="collapse"
data-bs-target="#navbarColor04" aria-expanded="false" aria-label="Toggle navigation">
<span class="bi bi-list"></span>
</button>
<button id="darkModeSwitch" class="btn btn-outline-secondary navbar-toggler theme-switcher-btn">
<i class="bi bi-sun"></i>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarColor04">
<ul class="navbar-nav nav-underline mx-auto">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tools">SSL Tools</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faqs">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#working">Working</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#why-us">Why Us?</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#ssl-issuers">Issuers</a>
</li>
</ul>
<hr />
<a href="/tool.html"><button class="btn btn-primary m-1">Get Started!</button></a>
<button id="darkModeSwitch" class="btn btn-outline-secondary theme-switcher-btn d-none d-md-block">
<i class="bi bi-sun"></i>
</button>
</div>
</div>
</nav>
<div class="py-5 my-5"></div>
</header>
<main>
<!-- Hero Section -->
<section id="hero">
<div class="d-flex justify-content-center">
<div class="d-flex flex-row align-self-center position-relative d-inline-flex border rounded-pill px-3 py-1">
<span class="d-flex position-absolute">
<span class="animate-ping position-absolute h-100 w-100 rounded-circle bg-opacity-75 bi bi-circle-fill"
style="color: green; opacity: 50%;"></span>
<span class="rounded-circle bi bi-circle-fill" style="color: green; opacity: 70%"></span>
</span>
<span class="ml-2 ps-1">Project Gatekeeper is live</span>
</div>
</div>
<div class="d-flex flex-column text-center flex-wrap justify-content-center my-3">
<h2 class="">Is your website secure enough?</h2>
<p class="opacity-75 fst-italic flex-wrap w-75 align-self-center">Discover Project Gatekeeper—your all-in-one
toolkit for free SSL certificates and their maintainance and top-notch website security.</p>
<span class="initialism">Safeguard your site and build trust today!</span>
</div>
<div>
<div class="d-flex flex-row align-items-center flex-wrap justify-content-center my-5">
<a href="/tool.html"><button type="button" class="btn btn-primary mx-1">Get
Started!</button></a>
<a href="#features"><button type="button" class="btn btn-outline-primary mx-1">Learn
More</button></a>
</div>
</div>
</section>
<!-- Separator -->
<div class="d-flex flex-row align-content-center flex-wrap justify-content-between my-5 py-5" id="features">
<div class="d-flex flex-column w-25"></div>
<div class="d-flex flex-column w-50 align-self-center">
<hr>
</div>
<div class="d-flex flex-column w-25"></div>
</div>
<!-- Features Section -->
<section class="container-fluid my-5">
<div class="container mb-5">
<h2 class="text-center">Features</h2>
<p class="text-center opacity-75 fst-italic">Project Gatekeeper offers a wide range of features to help you
secure your website and build trust with your users.</p>
</div>
<div class="d-flex flex-column align-items-center text-center row-gap-2">
<div class="card-group mx-4 gap-2">
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">100% Free Forever</h5>
<hr>
<p class="card-text">Never pay for SSL again. Powered by Let'sEncrypt, GoogleTrust and more with free
90-day
certificates.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Widely Trusted</h5>
<hr>
<p class="card-text">Our generated free SSL certificates are trusted in 99.9% of all major browsers
worldwide.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Enjoy Premium SSL Benefits</h5>
<hr>
<p class="card-text">Protect user information, generate trust and improve Search Engine Ranking.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Multi-Verification Options</h5>
<hr>
<p class="card-text">Secure multiple sub-domains and as well as wildcard domains with ease.</p>
</div>
</div>
</div>
<div class="d-flex flex-column align-content-center">
<div class="card-group mx-4 gap-2">
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Multiple Sub-domains & Wildcard Domain Support</h5>
<hr>
<p class="card-text">Secure multiple sub-domains and as well as wildcard domains with ease.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Custom CSR Supported</h5>
<hr>
<p class="card-text">We now support custom CSR to issue SSL certificates with all the available
verification
methods.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Email Reminders & Secure Systems</h5>
<hr>
<p class="card-text">Receive timely expiry reminders to keep your SSL certificates up-to-date and
secure.
</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Fast and Efficient Process</h5>
<hr>
<p class="card-text">Obtain free SSL certificate in just 3-4 minutes after DNS propagation and HTTP file
setup.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Separator -->
<div class="d-flex flex-row align-content-center flex-wrap justify-content-between my-5 py-5" id="tools">
<div class="d-flex flex-column w-25"></div>
<div class="d-flex flex-column w-50 align-self-center">
<hr>
</div>
<div class="d-flex flex-column w-25"></div>
</div>
<!-- Tools -->
<section class="container-fluid my-5 d-flex flex-column">
<div class="container mb-5">
<h2 class="text-center">SSL Tools</h2>
<p class="text-center opacity-75 fst-italic">Checkout our tools to test your website security and manage
security.</p>
</div>
<div class="d-flex flex-column align-content-center gap-2">
<div class="card-group mx-4 gap-2">
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Order SSL</h5>
<hr>
<p class="card-text">Order Professional SSL Certificate from top SSL Providers like Let's Encrypt, Google
Trust, SSL.com, BuySSL, etc.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Create Private Key and CSR</h5>
<hr>
<p class="card-text">Generate free Private Keys and CSR (Certificate Signing Request). We understand your
concerns. And so, we don't store your Private Key or CSR.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Check SSL Integrity</h5>
<hr>
<p class="card-text">Use the SSL Checker to troubleshoot common SSL Certificate installation problems on
your server including verifying that the correct certificate is installed, valid, and properly trusted.
</p>
</div>
</div>
</div>
<div class="card-group mx-4 gap-2">
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Decode SSL Certificate</h5>
<hr>
<p class="card-text">Use the CSR & Certificate Decoder to find out what information is in your Certificate
Signing Request & in your certificate.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title">Certificate & Key/CSR Matcher</h5>
<hr>
<p class="card-text">Use the Certificate Key Matcher to compare your private key, certificate, or CSR to
see if they match and can be used together.</p>
</div>
</div>
<div class="card border-2 border-start rounded-3">
<div class="card-body">
<h5 class="card-title"><span class="spinner-border spinner-border-sm"></span> Revoke Certificate (Under
Testing Phase due to non-uniformity across all providers) </h5>
<hr>
<p class="card-text">We offer users to revoke their SSL Certificate, in case if the user think the Private
Key has been compromised.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Separator -->
<div class="d-flex flex-row align-content-center flex-wrap justify-content-between my-5 py-5" id="faqs">
<div class="d-flex flex-column w-25"></div>
<div class="d-flex flex-column w-50 align-self-center">
<hr>
</div>
<div class="d-flex flex-column w-25"></div>
</div>
<!-- FAQs -->
<section class="container-fluid">
<div class="mx-5 d-flex flex-column px-5">
<h1 class="text-center">Frequent Asked Questions</h1>
<div class="accordion" role="tablist" id="accordion-1" style="font-family: Syne, sans-serif;">
<div class="accordion-item">
<h2 class="accordion-header" role="tab"><button class="accordion-button" type="button"
data-bs-toggle="collapse" data-bs-target="#accordion-1 .item-1" aria-expanded="true"
aria-controls="accordion-1 .item-1" style="font-family: Syne, sans-serif;">Is this free for commercial
use?</button></h2>
<div class="accordion-collapse collapse bg-body-tertiary px-4 show item-1" role="tabpanel"
data-bs-parent="#accordion-1">
<div class="accordion-body">
<p class="mb-0">Yes, it is free for all usages including commercial usage.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" role="tab"><button class="accordion-button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#accordion-1 .item-2" aria-expanded="false"
aria-controls="accordion-1 .item-2" style="font-family: Syne, sans-serif;">Can I use my own
CSR?</button>
</h2>
<div class="accordion-collapse collapse bg-body-tertiary px-4 item-2" role="tabpanel"
data-bs-parent="#accordion-1">
<div class="accordion-body">
<p class="mb-0">Currently, no. But, we'll be adding that feature soon enough</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" role="tab"><button class="accordion-button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#accordion-1 .item-3" aria-expanded="false"
aria-controls="accordion-1 .item-3" style="font-family: Syne, sans-serif;">Do these SSL certificates
work
for IP addresses?</button></h2>
<div class="accordion-collapse collapse bg-body-tertiary px-4 item-3" role="tabpanel"
data-bs-parent="#accordion-1">
<div class="accordion-body">
<p class="mb-0">For domain names with special characters or international characters we automatically
convert it to the punycode representation.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" role="tab"><button class="accordion-button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#accordion-1 .item-4" aria-expanded="false"
aria-controls="accordion-1 .item-4" style="font-family: Syne, sans-serif;">Can CNAME records be deleted
after verification?</button></h2>
<div class="accordion-collapse collapse bg-body-tertiary px-4 item-4" role="tabpanel"
data-bs-parent="#accordion-1">
<div class="accordion-body">
<p class="mb-0">Yes, all records can be deleted after verification. But, its suggested to keep them, to
ensure faster issuing of SSL certificates without waiting for CNAME DNS propagation.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" role="tab"><button class="accordion-button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#accordion-1 .item-5" aria-expanded="false"
aria-controls="accordion-1 .item-5" style="font-family: Syne, sans-serif;">My website gives a security
error
after installation</button></h2>
<div class="accordion-collapse collapse bg-body-tertiary px-4 item-5" role="tabpanel"
data-bs-parent="#accordion-1">
<div class="accordion-body">
<p class="mb-0">No, certificates can only be generated for registered domain names.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" role="tab"><button class="accordion-button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#accordion-1 .item-6" aria-expanded="false"
aria-controls="accordion-1 .item-6" style="font-family: Syne, sans-serif;">My website works but shows a
red
"Not Secure" or "Insecure" in the address bar after installation</button></h2>
<div class="accordion-collapse collapse bg-body-tertiary px-4 item-6" role="tabpanel"
data-bs-parent="#accordion-1">
<div class="accordion-body">
<p class="mb-0">If your website shows a security error then installation was not done correctly. You can
try
going to https://www.ssllabs.com/ to check SSL certificate installation issues and fix. If you need
help
with this your best bet would be to contact your host, professional developer or admin for help.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" role="tab"><button class="accordion-button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#accordion-1 .item-7" aria-expanded="false"
aria-controls="accordion-1 .item-7" style="font-family: Syne, sans-serif;">My website is still not going
to
HTTPS or Secure after a successful installation</button></h2>
<div class="accordion-collapse collapse bg-body-tertiary px-4 item-7" role="tabpanel"
data-bs-parent="#accordion-1">
<div class="accordion-body">
<p class="mb-0">Your website most likely has insecure content which needs to be remedied. You can try
going
to https://whynopadlock.com to see issues and fix. If you need help with this your best bet would be
to
contact your host, professional developer or admin for help.</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" role="tab"><button class="accordion-button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#accordion-1 .item-8" aria-expanded="false"
aria-controls="accordion-1 .item-8" style="font-family: Syne, sans-serif;">Further questions or
feedback?</button></h2>
<div class="accordion-collapse collapse bg-body-tertiary px-4 item-8" role="tabpanel"
data-bs-parent="#accordion-1">
<div class="accordion-body">
<p class="mb-0">No, certificates can only be generated for registered domain names.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Separator -->
<div class="d-flex flex-row align-content-center flex-wrap justify-content-between my-5 py-5" id="working">
<div class="d-flex flex-column w-25"></div>
<div class="d-flex flex-column w-50 align-self-center">
<hr>
</div>
<div class="d-flex flex-column w-25"></div>
</div>
<!-- working -->
<section class="container-fluid">
<div class="container mb-5">
<h2 class="text-center">How does this works?</h2>
<p class="text-center opacity-75 fst-italic">Project Gatekeeper offers a wide range of features to help you
secure your website and build trust with your users. It's based on <a href="https://pypi.org/project/acme/"
target="_blank" rel="noopener noreferrer">ACMEv2</a> by <a href="https://certbot.eff.org/" target="_blank"
rel="noopener noreferrer">CertBot</a>.</p>
</div>
<div class="card-group mx-auto">
<div class="card">
<div class="card-body">
<h5 class="card-title">Select Cert & Domain
</h5>
<hr>
<p class="card-text">Choose the domain names, certificate type and type of keys for the SSL issuance.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Generate Private Key & CSR</h5>
<hr>
<p class="card-text">We provide two ways to fill in domain name information, just enter domain name or enter
your custom CSR.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Verify Domain</h5>
<hr>
<p class="card-text">Verify your domain by either of the three methods, viz., CNAME or TXT DNS Record or
file based HTTP method.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Certificate Issued</h5>
<hr>
<p class="card-text">It only takes 1-3 minutes for the certificate to be successfully issued and sen to you,
via mail, once the domain has been verified.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Complete</h5>
<hr>
<p class="card-text">Install the certificate on the hosting server and secure your website against hackers.
</p>
</div>
</div>
</div>
</section>
<!-- Separator -->
<div class="d-flex flex-row align-content-center flex-wrap justify-content-between my-5 py-5" id="why-us">
<div class="d-flex flex-column w-25"></div>
<div class="d-flex flex-column w-50 align-self-center">
<hr>
</div>
<div class="d-flex flex-column w-25"></div>
</div>
<!-- Why Us -->
<section class="container-fluid">
<div class="container mb-5">
<h2 class="text-center">Why Us?</h2>
<p class="text-center opacity-75 fst-italic">Project Gatekeeper offers easy process to get professional SSL
Certificates to help you
secure your website and build trust with your users. It's built using <a href="https://pypi.org/project/acme/"
target="_blank" rel="noopener noreferrer">ACMEv2</a> by <a href="https://certbot.eff.org/" target="_blank"
rel="noopener noreferrer">CertBot</a>.</p>
</div>
<div class="container mb-5">
<ol class="list-group list-group-numbered list-group-flush border rounded">
<li class="list-group-item"> Fast and Easy Process (Even for non-technical people)</li>
<li class="list-group-item"> Complete support from developers</li>
<li class="list-group-item"> Multiple SSL Providers</li>
<li class="list-group-item"> Multi-domain & Wildcard domain support</li>
<li class="list-group-item"> Email delivery</li>
<li class="list-group-item"> Timely reminders of SSL expiry</li>
<li class="list-group-item disabled"> SSL revocation (Under Testing Phase) <span
class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span></li>
<li class="list-group-item disabled"> Custom CSR support (Under Testing Phase) <span
class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span></li>
<li class="list-group-item disabled"> Auto-SSL Issuance (Under Testing Phase) <span
class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span></li>
</ol>
</div>
</section>
<!-- Separator -->
<div class="d-flex flex-row align-content-center flex-wrap justify-content-between my-5 py-5" id="ssl-issuers">
<div class="d-flex flex-column w-25"></div>
<div class="d-flex flex-column w-50 align-self-center">
<hr>
</div>
<div class="d-flex flex-column w-25"></div>
</div>
<!-- SSL Issuers -->
<section class="container-fluid">
<div class="container mb-5">
<h2 class="text-center">SSL Issuers</h2>
<p class="text-center opacity-75 fst-italic">We issue SSL certificates using Trusted SSL Issuers</p>
</div>
<div class="container my-5">
<div class="row row-cols-md-6 row-cols-3 d-flex justify-content-center gap-1">
<div class="col p-1">
<img src="https://letsencrypt.org/images/letsencrypt-logo-horizontal.svg" alt="Let's Encrypt"
class="img-fluid">
</div>
<div class="col p-1">
<img src="https://status.pki.goog/images/trust-logo.svg" alt="Google Trust Services" class="img-fluid">
</div>
<div class="col p-1">
<img src="/assets/img/buypass.svg" alt="Buy Pass" class="img-fluid">
</div>
<div class="col p-1">
<img src="https://zerossl.com/assets/images/zerossl_logo.svg" alt="Zero SSL" class="img-fluid">
</div>
<div class="col bg-light p-1">
<img src="https://ee2cc1f8.rocketcdn.me/wp-content/uploads/2023/10/logo-top.png" alt="SSL.com"
class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!-- Separator -->
<div class="d-flex flex-row align-content-center flex-wrap justify-content-between my-5 py-5" id="footer">
<div class="d-flex flex-column w-25"></div>
<div class="d-flex flex-column w-50 align-self-center">
</div>
<div class="d-flex flex-column w-25"></div>
</div>
<!-- footer -->
<footer class="bg-body-tertiary">
<div class="container-fluid border-top d-flex flex-column justify-content-center">
<div class="row row-cols-lg-4 row-cols-md-3 row-cols-sm-2 row-cols-1 d-flex justify-content-evenly m-5 g-5">
<div class="col">
<h3>Navigate</h3>
<hr class="w-75 text-secondary-emphasis">
<ul class="list-group list-group-flush border-0">
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a href="/#"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-house-fill"></i> Home</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a href="/#features"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-award-fill"></i> Features</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a href="/#tools"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-tools"></i> SSL Tools</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a href="/#faqs"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-question-circle-fill"></i> Frequently
Asked
Questions</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a href="/#working"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-gear-wide-connected"></i> How does this
works?</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a href="/#why-us"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-bookmark-check-fill"></i> Why Us?</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a href="/#ssl-issuers"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-shield-fill-check"></i> SSL Issuers</a>
</li>
</ul>
</div>
<div class="col">
<h3>SSL Tools</h3>
<hr class="w-75 text-secondary-emphasis">
<ul class="list-group list-group-flush border-0">
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="/tool/generate.html"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-code-slash"></i> Create Private Key &
CSR</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="/tool/decode-ssl.html"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-sliders"></i> Decode SSL Certificate</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="/tool/cert-matcher.html"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-shield-lock-fill"></i> Certificate &
Key/CSR
Matcher</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="/tool/order.html" class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-cart-plus-fill"></i> Order SSL</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="/tool/ssl-integrity.html"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-clipboard-check-fill"></i> Check SSL
Integrity</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="/tool/revoke.html"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-shield-fill-x"></i> Revoke
Certificate</a>
</li>
</ul>
</div>
<div class="col">
<h3>Other Projects</h3>
<hr class="w-75 text-secondary-emphasis">
<ul class="list-group list-group-flush border-0">
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://github.com/RaannaKasturi/VILID-Colabs" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-brush-fill "></i> VILID - Image
Generator</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://github.com/RaannaKasturi/iTASSER-Notebook" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-gpu-card"></i> GPU-I-Tasser - Protein
structure
predictor boosted by GPU</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://arktech.edu.eu.org/" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-server"></i> ARKTech - Free hosting for
developers</a>
</li>
</ul>
</div>
<div class="col">
<h3>Connect with the Developer</h3>
<hr class="w-75 text-secondary-emphasis">
<ul class="list-group list-group-flush border-0">
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://nayankasturi.eu.org/" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-globe2"></i> Website</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://nayankasturi.eu.org/" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-journal-richtext"></i> Blog</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="http://github.com/raannakasturi" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-github"></i> GitHub</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://www.youtube.com/@RaannaKasturi?sub_confirmation=1" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-youtube"></i> YouTube</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://huggingface.co/RaannaKasturi" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer">
<img height="16" width="16"
src="https://huggingface.co/datasets/huggingface/brand-assets/resolve/main/hf-logo-pirate.svg" />
HuggingFace</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://www.linkedin.com/in/raannakasturi" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-linkedin"></i> LinkedIn</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="http://t.me/raannakasturi" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-telegram"></i> Telegram</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-envelope-at-fill"></i> E-Mail</a>
</li>
<li class="list-group-item bg-transparent link-opacity-75 link-opacity-100-hover"><a
href="https://instagram.com/RaannaKasturi" target="_blank"
class="link-body-emphasis link-underline-opacity-50-hover link-offset-1-hover"
rel="noopener noreferrer"><i class="bi bi-instagram"></i> Instagram</a>
</li>
</ul>
</div>
</div>
<div class="d-flex flex-column align-items-center text-center mt-5">
<hr class="w-75 mb-5 pb-5 text-secondary-emphasis">
<p>
Copyright © 2024 <a href="/">Project Gatekeeper</a>.<br>Designed, Developed
and
Maintained by <a href="http://nayankasturi.eu.org" target="_blank" rel="noopener noreferrer">Nayan
Kasturi</a>
</p>
</div>
</div>
</footer>
<!-- Back to TOP Button -->
<button type="button" class="btn btn-info btn-floating" id="btn-back-to-top">
<i class="bi bi-arrow-up-circle"> </i>
</button>
</main>
<!-- Scripts -->
<script src="/assets/scripts/global.js"></script>
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous">
</script>
</body>
</html>