-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 2.01 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A simple & Secure Password Generator website created by Brajesh Kumar.">
<meta name="author" content="Brajesh Kumar">
<meta property="og:url" content="https://pass.brajesh.site">
<meta name="keywords" content="password, simple password generator, online password generator, privacy tools">
<title>Password Generator - Generate Secure Passwords</title>
<meta name="description" content="Easily generate secure and unique passwords with our Password Generator tool. Customize password length, include numbers and symbols, and enhance your online security.">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/webp" href="lock.webp" sizes="64x64">
</head>
<body>
<header>
<h1>Password Generator</h1>
</header>
<main>
<section id="generator">
<h2>Generate Password</h2>
<div id="password-box">
<div id="password"></div>
</div>
<button id="generate-btn">Generate Password</button>
<label for="length">Password Length:</label>
<input type="range" id="length" value="12" min="8" max="64">
<span id="length-value">12</span>
<br>
<input type="checkbox" id="includeNumbers" checked>
<label for="includeNumbers">Include Numbers</label>
<br>
<input type="checkbox" id="includeSymbols" checked>
<label for="includeSymbols">Include Symbols</label>
</section>
<section id="tips">
<h2>Tips for Secure Passwords</h2>
<ul>
<li>Use a mix of uppercase and lowercase letters.</li>
<li>Include numbers and symbols.</li>
<li>Avoid using common words or phrases.</li>
<li>Make your password at least 8 characters long.</li>
</ul>
</section>
</main>
<footer>
<button id="projects-btn">My Other Projects</button>
<button id="about-btn">About</button>
<p>© 2024 Password Generator - Project by Brajesh Kumar</p>
</footer>
<script src="script.js" defer></script>
</body>
</html>