-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (36 loc) · 1.39 KB
/
index.html
File metadata and controls
38 lines (36 loc) · 1.39 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
<!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="index.css">
<!-- ICON -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="https://kit.fontawesome.com/aa37050208.css" crossorigin="anonymous">
<body>
<div class="container">
<header>
<h1 class="top">Generate a</h1>
<h1 class="mid">random password</h1>
<h4 class="bot">Never use an insecure password again.</h4>
<button onclick="genpass()" style="cursor: pointer;"><span class="material-symbols-outlined">electric_bolt</span> Generate password</button>
</header>
<main>
<div class="left-content">
<p id="text-area1"></p>
<p id="text-area2">
</div>
<div class="right-content">
<p id="text-area3"></p>
<p id="text-area4"></p>
</div>
</main>
<div class="credits">
© Chirstopher Gacad 2023
</div>
</div>
<script src="index.js"></script>
</body>
</html>