<!DOCTYPE html><html lang="en"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">Hacked by Hudul <title>Hacked by Hudul</title> <style> body { background-color: black; color: red; font-family: Verdana, Geneva, sans-serif; text-align: center; margin: 0; padding-top: 50px; text-rendering: optimizeLegibility; } h1 { font-size: 24px; font-weight: 900; margin-top: 20px; } video { width: 40%; height: 40%; max-width: 100%; } /* Styled Mute/Unmute Button */ .mute-btn { position: fixed; bottom: 20px; right: 20px; background: rgba(255, 0, 0, 0.8); border: none; color: white; padding: 10px 20px; font-size: 16px; font-weight: bold; cursor: pointer; border-radius: 10px; transition: background 0.3s ease; } .mute-btn:hover { background: rgba(255, 0, 0, 1); } </style> <video autoplay loop muted id="video"> <source src="1.mp4" type="video/mp4"> Your browser does not support the video tag. </video>

Hacked by Hudul

<button class="mute-btn" onclick="toggleMute()" id="muteButton">Unmute</button> <script> function toggleMute() { let video = document.getElementById("video"); let button = document.getElementById("muteButton"); if (video.muted) { video.muted = false; button.textContent = "Mute"; } else { video.muted = true; button.textContent = "Unmute"; } } </script>