-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.05 KB
/
index.html
File metadata and controls
28 lines (27 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head> <!-- ===( CODE AASHU )=== -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="style.css">
<title>CODE AASHU | Random Password Generator</title>
</head>
<body>
<div class="container">
<div class="title">
<h1>Generate a <br><span>Random Password</span></h1>
</div>
<div id="message-box">
<img src="images/—Pngtree—color neon dialog box_4044237.png" alt="message-box">
<p>copied</p>
</div>
<div class="password-panel">
<input id="password-input" type="text">
<button class="copy-btn"><img class="copy" src="images/copy.png" alt="copy"></button>
</div>
<div class="btn"><button><i class="fa-solid fa-bolt bolt"></i>Generate Password</button></div>
</div>
<script src="script.js"></script>
</body>
</html>