Files
Youtube-Volume-Slider/popup.html
2025-09-28 10:47:26 +03:00

19 lines
515 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Volume Slider</title>
<style>
body { font-family: sans-serif; min-width: 220px; padding: 12px; }
label { font-weight: bold; }
input[type=range] { width: 100%; }
.value { margin-left: 8px; font-weight: bold; }
</style>
</head>
<body>
<label>Volume <span id="val">100</span></label>
<input id="slider" type="range" min="0" max="100" value="100">
<script src="popup.js"></script>
</body>
</html>