forked from AdityaSinha2305/ForkTheCaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
63 lines (60 loc) · 2.2 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
<link rel="stylesheet" href="./styles/about.css" />
<link rel="icon" type="image/x-icon" href="assets/recaptcha-icon.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="index.html">Get Your Captcha</a>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="#">Contributors</a></li>
<li><a href="about.html">About </a></li>
<li><a href="https://github.com/AdityaSinha2305/ForkTheCaptcha" target="_blank">GitHub </a></li>
</ul>
<div class="menu-icon">
<i class="fas fa-bars"></i>
</div>
</nav>
<div class="container">
<div class="about">
<h1 class="about-title">About ForkTheCaptcha</h1>
<p class="about-description">
ForkTheCaptcha is a web-based project created to demonstrate how to
implement a CAPTCHA system using simple client-side technologies like
HTML, CSS, and JavaScript. CAPTCHAs are essential tools to prevent
automated bots from accessing websites, ensuring user security and
form integrity.
</p>
<h2 class="project-features-title">Project Features</h2>
<ul class="project-features-list">
<li class="project-feature-item">
Dynamically generated CAPTCHA to verify user interaction.
</li>
<li class="project-feature-item">
Audio CAPTCHA support for accessibility.
</li>
<li class="project-feature-item">
Simple and responsive UI for a smooth user experience.
</li>
</ul>
</div>
</div>
<footer>
<p>© 2024 ForkTheCaptcha. All rights reserved.</p>
</footer>
</body>
</html>