-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Password generator</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/solid.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/fontawesome.css"
/>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.7.1/css/regular.css"
/>
</head>
<body id="body">
<section id="hero">
<div class="container">
<h3>Password Generator</h3>
<div class="slider_main">
<input
type="range"
value="8"
min="1"
max="25"
class="slider"
oninput="this.nextElementSibling.value = this.value"
id="slider"
/>
<output> 8 </output>
</div>
<button id="generate" class="action-btn">
Generate <i class="fab fa-keycdn"> </i>
</button>
<label>
Include Special Characters
<input type="checkbox" checked="checked" id="checkbox" />
<span class="checkmark"></span>
</label>
<div class="output">
<h5 id="pwd_txt"><span>Click on Generate Button</span></h5>
<button id="clipboard" class="clipboard">
<i class="fas fa-clipboard"></i>
</button>
</div>
<span id="copy_text"></span>
</div>
</section>
<script src="script.js"></script>
</body>
</html>