-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 965 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 965 Bytes
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Bree+Serif&family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<h1>Generate a <br> <span>Random Password</span></h1>
<div class="display">
<input type="text" id="Password" >
<img src="images/copy.png" onclick="copyo()" alt="">
</div>
<button onclick="fun()"><img src="images/generate.png" alt="">Generate Password</button>
</div>
<footer>LAVISH GEHLOD</footer>
<script src="main.js"></script>
</body>
</html>