-
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.58 KB
/
index.html
File metadata and controls
38 lines (36 loc) · 1.58 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Password Generator</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<h1>Generate a<br><span>Random Password</span></h1>
<div class="display">
<input type="text" id="password" placeholder="Password">
<img src="copy.png" onclick="copyPassword()">
</div>
<button onclick="createPassword()"> <img src="generate.png" alt="">Generate Password</button>
</div>
<footer>
<p>Made with love by <b>Aman Hasan</b></p>
<a href="https://twitter.com/Aman_Hasan01?t=wVbmgJz6lPkRrI80H2x9AQ&s=09" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="https://www.linkedin.com/in/aman-hasan">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://instagram.com/amanhasan171?igshid=MzNlNGNkZWQ4Mg==">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://www.facebook.com/Amanhasan93?mibextid=ZbWKwL">
<i class="fa-brands fa-facebook"></i>
</a>
</footer>
<script src="script.js"></script>
</body>
</html>