-
Notifications
You must be signed in to change notification settings - Fork 0
/
cybersecurity.html
33 lines (33 loc) · 1.07 KB
/
cybersecurity.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Captcha Validation</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="cyber">
<header>
<nav>
<a href="index.html">Home</a>
<a href="mouse_events.html">Mouse Events</a>
<a href="calculator.html">Calculator</a>
<a href="registration_form.html">Registration Form</a>
<a href="cybersecurity.html">Cybersecurity</a>
</nav>
</header>
<div class="container">
<h2>Captcha Validation</h2>
<div id="captchaBackground">
<span id="captcha">ABCDE12345</span>
</div>
<input type="text" id="textBox" placeholder="Enter Captcha">
<div id="buttons">
<button id="submit">Submit</button>
<button id="refresh">Refresh</button>
</div>
<span id="output"></span>
</div>
<script src="captcha.js"></script>
</body>
</html>