-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
34 lines (34 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" /> <!-- charset-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Password Generator</title> <!--Password generator-->
<link rel="stylesheet" href="style.css" /> <!--css link-->
</head>
<body>
<div class="wrapper"> <!-- wrapper div class-->
<header>
<h1>Password Generator</h1> <!-- header-->
</header>
<div class="card">
<div class="card-header">
<h2>Generate a Password</h2>
</div>
<div class="card-body"> <!-- class card body-->
<textarea
readonly
id="password"
placeholder="Your Secure Password"
aria-label="Generated Password"
></textarea>
</div>
<div class="card-footer">
<button id="generate" class="btn">Generate Password</button> <!-- id button-->
</div>
</div>
</div>
<script src="script.js"></script> <!--link to js script-->
</body>
</html>