-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 894 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Random Password Generator</title>
<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:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Karla:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="main">
<h1>Generate a <span style="color: #4adf86">random passowrd</span></h1>
<p>Never use an insecure password again.</p>
<button id="btn" onclick="placePasswords()">Generate passwords</button>
<hr>
<div id="input-box">
<p id="password1-el" class="passwords">The</p>
<p id="password2-el" class="passwords">Secrets</p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>