File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 2
2
< html lang ="en ">
3
3
4
4
< head >
5
+ <!-- Meta tags for character set and viewport settings -->
5
6
< meta charset ="UTF-8 ">
6
7
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7
8
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
11
12
12
13
< body >
13
14
< div class ="container ">
15
+
16
+ <!-- Heading for the password generator -->
14
17
< h2 > Password Generator</ h2 >
18
+
19
+ <!-- Result container for displaying the generated password -->
15
20
< div class ="result-container ">
16
21
< textarea id ="PasswordResult "> </ textarea >
17
22
</ div >
23
+
24
+ <!-- Settings section with options for password length and character types -->
18
25
< div class ="settings ">
19
26
< div class ="setting ">
20
27
< label > Password length</ label >
@@ -37,6 +44,8 @@ <h2>Password Generator</h2>
37
44
< input type ="checkbox " id ="symbols " checked />
38
45
</ div >
39
46
</ div >
47
+
48
+ <!-- Buttons for generating and copying passwords -->
40
49
< div class ="buttons ">
41
50
< button class ="btn btn-large " id ="generateBtn ">
42
51
< i class ="fas fa-key "> </ i > Genrate
@@ -46,9 +55,12 @@ <h2>Password Generator</h2>
46
55
</ button >
47
56
</ div >
48
57
</ div >
58
+
59
+ <!-- Link to the JavaScript file for functionality -->
49
60
< script src ="script.js "> </ script >
61
+ <!-- External library scripts for FontAwesome and GitHub buttons -->
50
62
< script async defer src ="https://buttons.github.io/buttons.js "> </ script >
51
63
< script src ="https://kit.fontawesome.com/dd8c49730d.js " crossorigin ="anonymous "> </ script >
52
64
</ body >
53
65
54
- </ html >
66
+ </ html >
You can’t perform that action at this time.
0 commit comments