-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@500&family=Karla:wght@400;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<title>Password Generator</title>
</head>
<body>
<div id="notification"><p id="notification-el" class="copied-text">Copied!</p></div>
<div class="container">
<button id="theme"></button>
<h1 class="title">Generate a<br><span class="accent-color">random password</span></h1>
<p class="subtitle">Never use a insecure password again.</p>
<button id="generate-el" class="generate">Generate passwords</button>
<div class="separator"></div>
<div class="pw-container">
<p id="pw-one" class="pw"></p>
<p id="pw-two" class="pw"></p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>