-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1.31 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
<html>
<head>
<link rel="stylesheet" href="index.css">
<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&display=swap" rel="stylesheet">
<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=Karla:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
</head>
<body>
<section>
<div class="hero">
<h1>Generate a <span class="highlight">safe password</span></h1>
<p>Never use an insecure password again.</p>
<button id="generate-btn">Generate passwords</button>
</div>
<div>
<div class="password-container">
<button id="password1-el" class="password-wrapper" onclick="promptCopy1()"></button>
<button id="password2-el" class="password-wrapper" onclick="promptCopy2()"></button>
</div>
</div>
</section>
<script src="index.js"></script>
</body>
</html>