-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (128 loc) · 4.58 KB
/
Copy pathindex.html
File metadata and controls
135 lines (128 loc) · 4.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>
Free Strong Password Generator - Create Secure Random Passwords Online
</title>
<meta
name="title"
content="Free Strong Password Generator - Create Secure Random Passwords Online"
/>
<meta
name="description"
content="Generate strong, secure random passwords instantly. Free password generator with customizable length, uppercase, lowercase, numbers, and symbols. Create unbreakable passwords for better online security."
/>
<meta
name="keywords"
content="password generator, strong password, random password, secure password, password creator, password maker, free password generator, online password tool"
/>
<meta name="author" content="Password Generator Tool" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="#" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="#" />
<meta
property="og:title"
content="Free Strong Password Generator - Create Secure Random Passwords"
/>
<meta
property="og:description"
content="Generate strong, secure random passwords instantly with our free online tool. Customize length and character types for maximum security."
/>
<meta
property="og:image"
content="https://yourwebsite.com/Images/Password-Gen-Social.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="#" />
<meta
property="twitter:title"
content="Free Strong Password Generator - Create Secure Passwords"
/>
<meta
property="twitter:description"
content="Generate strong, secure random passwords instantly with our free online tool."
/>
<meta
property="twitter:image"
content="https://yourwebsite.com/Images/Password-Gen-Social.png"
/>
<!-- Favicon -->
<link rel="icon" type="image/png" href="Images/Password Gen Logo.png" />
<link rel="apple-touch-icon" href="Images/Password Gen Logo.png" />
<!-- Schema.org Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Password Generator",
"description": "Free online tool to generate strong, secure random passwords with customizable options",
"url": "#",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Customizable password length (6-20 characters)",
"Include uppercase letters",
"Include lowercase letters",
"Include numbers",
"Include symbols",
"Password strength indicator",
"Instant password regeneration"
]
}
</script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Password Generator</h1>
<div class="password-container">
<h3 class="password">Your Password...</h3>
</div>
<div class="length">
<label>Password Length</label>
<div class="len-range">
<label for=""></label>
<input type="range" id="length-sli" min="6" max="20" value="10" />
<span id="length-value"><b>10</b></span>
</div>
</div>
<div class="check-boxes">
<div class="option">
<label id="checkboxs">Include UpperCase</label>
<input type="checkbox" id="uppercase" />
</div>
<div class="option">
<label id="checkboxs">Include LowerCase</label>
<input type="checkbox" id="lowercase" />
</div>
<div class="option">
<label id="checkboxs">Include Numbers</label>
<input type="checkbox" id="numbers" />
</div>
<div class="option">
<label id="checkboxs">Include Symbols</label>
<input type="checkbox" id="symbols" />
</div>
</div>
<button id="regen-btn">Regenerate Password</button>
<div class="pass-strength">
<p>Password Strength: <span id="strength-txt">medium</span></p>
<div class="strength-meter">
<div class="strength-bar"></div>
</div>
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>