-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (37 loc) · 1.32 KB
/
Copy pathindex.html
File metadata and controls
52 lines (37 loc) · 1.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- document responsive but scaling the items to screen -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Homework-3 Random Password Generator -->
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- The title-->
<title>Password Generator</title>
<!-- These are the style links. Reset CSS and Styles CSS -->
<link rel="stylesheet" href="style.css">
</head>
<!-- This is the body -->
<body>
<div id="wrapper">
<header>
<h1>Password Generator</h1>
</header>
<!--This is the content area-->
<div id="content">
<h2>Generate a Password</h2>
<hr>
<!-- This is a text area for output-->
<textarea readonly id="password" placeholder="Your Secure Password"
aria-label="Generated Password"></textarea>
<hr>
<div id="btn">
<!-- This is the generate password button -->
<button id="generate">Generate Password</button>
</div>
</div>
</div>
<!-- This is the Javascript document-->
<script src="script.js"></script>
</body>
</html>