-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (28 loc) · 940 Bytes
/
index.html
File metadata and controls
32 lines (28 loc) · 940 Bytes
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>Password Generator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="heading-text">
<p>Generate a</p>
<p class="green">random password</p>
<p>Never use an insecure password again.</p>
</div>
<input type="text" placeholder="10" class="input" id="num-input">
<button class="generate-btn" id="generate-btn">Generate Passwords</button>
<hr class="horizontal-line">
<div class="passwords">
<div class="box" id="pw1"></div>
<div class="box" id="pw2"></div>
<div class="box" id="pw3"></div>
<div class="box" id="pw4"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>