-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Captcha</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
</head>
<body>
<div class="captcha-container">
<div class="header">Security Check</div>
<div class="securityCode">
<p id="code"></p>
<div class="icons">
<span class="readText">
<i class="fas fa-headphones"></i>
</span>
<span class="changeText">
<i class="fas fa-sync-alt"></i>
</span>
</div>
</div>
<div class="userInput">
<input type="text" placeholder="Type the text here" >
<button type="submit" class="btn">Submit</button>
</div>
</div>
<script src="https://code.responsivevoice.org/responsivevoice.js"></script>
<script src="./script.js"></script>
</body>
</html>