-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.25 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<!-- Meta tag to set the viewport to make the website responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title of the webpage -->
<title>Random Password Generation</title>
<!-- Link to the external CSS file -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- Main heading of the webpage -->
<h1>Generate a <br><span>random password</span></h1>
<div class="display">
<!-- Input field to display the generated password -->
<input type="text" id="password" placeholder="Password">
<!-- Image acting as a button to copy the password -->
<img src="Random Password Generation Icons/copy.png" onclick="copyPassword()">
</div>
<!-- Button to generate a new password -->
<button onclick="generatePassword()">
<img src="Random Password Generation Icons/generate.png">
Generate Password
</button>
</div>
<!-- Link to the external JavaScript file -->
<script src="main.js"></script>
</body>
</html>