HTML:-
<!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="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Random Password Generator</h1>
<div id="passwordDisplay"></div>
<div id="options">
<label for="length">Password Length:</label>
<input type="range" id="length" min="1" max="100" value="12">
<span id="lengthValue">12</span>
<br>
<span id="passwordLength">Length of Password: <span id="passwordLengthValue">12</span></span>
<br>
<label for="uppercase">Include Uppercase:</label>
<input type="checkbox" id="uppercase">
<br>
<label for="numbers">Include Numbers:</label>
<input type="checkbox" id="numbers">
<br>
<label for="symbols">Include Symbols:</label>
<input type="checkbox" id="symbols">
</div>
<button id="generateButton">Generate Password</button>
</div>
<script src="script.js"></script>
</body>
</html>