-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (48 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- This is the first step in making the document responsive but scaling the items to screen -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Hergemony Password Generator -->
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- This is the title-->
<title>The Password Generator</title>
<!-- These are the style links. Reset CSS and Styles CSS -->
<link rel="stylesheet" type="text/css" href="assets/reset.css">
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<!-- This is the body -->
<body>
<!--This is the wrapper container with all of the content-->
<div id="wrapper">
<header>
<h1>The Password Generator 🔏 </h1>
</header>
<!--This is the content area-->
<div id="content">
<h2>Let's generate a password:</h2>
<hr>
<!-- This is a readonly text area for output-->
<textarea readonly id="password" placeholder="Your Secure Password"
aria-label="Generated Password"></textarea>
<hr>
<!-- This is the div for the buttons -->
<div id="btn">
<!-- This is the generate password button -->
<button id="generate">Generate
Password 🤐 </button>
<!-- This is the copy button -->
<button id="copy"> Copy to Clipboard 📋 </button>
</div>
</div>
</div>
<!-- This is the Javascript document-->
<script src="script.js"></script>
</body>
<footer>
<div id="footer">
<h1>❤ Hergemony™ Digital Services 2022 ❤</h1>
</div>
</footer>
</html>