-
Notifications
You must be signed in to change notification settings - Fork 32
/
about.html
97 lines (93 loc) · 3.53 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
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
<!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.html">Contributors</a></li>
<li><a href="about.html" aria-current="page">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 class="contribution-guide">
<h2>How to Contribute</h2>
<ol>
<li>
<span class="step">1.</span> Fork & Star⭐ this repository:
<pre><code>https://github.com/AdityaSinha2305/ForkTheCaptcha.git</code></pre>
</li>
<li>
<span class="step">2.</span> Clone the forked repository:
<pre><code>git clone https://github.com/your-username/ForkTheCaptcha.git</code></pre>
</li>
<li>
<span class="step">3.</span> Navigate to project directory:
<pre><code>cd ForkTheCaptcha</code></pre>
</li>
<li>
<span class="step">4.</span> Create a new branch:
<pre><code>git checkout -b your-feature-branch</code></pre>
</li>
<li>
<span class="step">5.</span> Make your changes and commit:
<pre><code>git add .</code></pre>
<pre><code>git commit -m "Proper commit message"</code></pre>
</li>
<li>
<span class="step">6.</span> Push your fork:
<pre><code>git push origin your-feature-branch</code></pre>
</li>
<li>
<span class="step">7.</span> Open a pull request, and we’ll review it!
</li>
</ol>
</div>
</div>
<footer>
<p>© 2024 ForkTheCaptcha. All rights reserved.</p>
</footer>
</body>
</html>