trAvis Anonymous File Manager
Edit File: MKA.html
<!DOCTYPE html> <html lang="tr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Emin Sarsılmaz"> <title>Mustafa Kemal Atatürk</title> <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { background: url('https://i.pinimg.com/originals/6e/6e/64/6e6e64dab7b47ac934780590f7f84547.gif') no-repeat center center fixed; background-size: cover; font-family: 'Rajdhani', sans-serif; color: white; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; overflow-x: hidden; } .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: -1; } .container { max-width: 900px; padding: 2rem; z-index: 1; } .main-title { font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 2rem; text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000; letter-spacing: 3px; line-height: 1.2; } .quote { font-size: 2.5rem; font-weight: 700; margin: 2rem 0; text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff; animation: glow 2s ease-in-out infinite alternate; } @keyframes glow { from { text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff; } to { text-shadow: 0 0 10px #ffffff, 0 0 20px #ff0000, 0 0 30px #ff0000; } } .author { font-size: 1.5rem; font-style: italic; margin-top: 1rem; text-align: right; margin-right: 2rem; text-shadow: 0 0 5px #ffffff; } .music-btn { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; border-radius: 50%; background: rgba(255, 0, 0, 0.7); border: 2px solid white; color: white; display: flex; justify-content: center; align-items: center; cursor: pointer; font-size: 1.5rem; transition: all 0.3s ease; box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); z-index: 100; } .music-btn:hover { background: rgba(255, 0, 0, 0.9); transform: scale(1.1); } .music-btn.paused::after { content: "🔇"; } .music-btn.playing::after { content: "🔊"; } /* Responsive tasarım */ @media (max-width: 768px) { .main-title { font-size: 2.5rem; } .quote { font-size: 1.8rem; } .author { font-size: 1.2rem; } } @media (max-width: 480px) { .main-title { font-size: 1.8rem; } .quote { font-size: 1.5rem; } .author { font-size: 1rem; } .music-btn { width: 50px; height: 50px; font-size: 1.2rem; } } </style> </head> <body> <div class="overlay"></div> <div class="container"> <h1 class="main-title">Hacked By Emin Sarsılmaz & LydexCoding & Bilinmez Yüz</h1> <p class="quote">Ne mutlu Türküm diyene!</p> <p class="author">- Mustafa Kemal Atatürk</p> </div> <div class="music-btn playing" id="musicBtn"></div> <!-- Audio Element --> <audio id="backgroundMusic" loop autoplay> <source src="https://github.com/isiajkskakakkaoao/Hacked/raw/refs/heads/main/CVRTOON%20-%20Plevne%20%5BNtSBJoO-pqg%5D.mp3" type="audio/mpeg"> </audio> <script> document.addEventListener('DOMContentLoaded', function() { const musicBtn = document.getElementById('musicBtn'); const audio = document.getElementById('backgroundMusic'); // Müzik otomatik başlatma function startMusic() { audio.play().then(() => { musicBtn.classList.remove('paused'); musicBtn.classList.add('playing'); }).catch(error => { // Eğer otomatik başlatma engellenirse, buton tıklaması ile başlat console.log('Otomatik başlatma engellendi, buton kullanılacak'); musicBtn.classList.remove('playing'); musicBtn.classList.add('paused'); }); } // Sayfa yüklendiğinde müziği başlat startMusic(); // Müzik butonu tıklama olayı musicBtn.addEventListener('click', function() { if (audio.paused) { audio.play(); musicBtn.classList.remove('paused'); musicBtn.classList.add('playing'); } else { audio.pause(); musicBtn.classList.remove('playing'); musicBtn.classList.add('paused'); } }); // Müzik yükleme ve hata kontrolleri audio.addEventListener('loadeddata', function() { console.log('Müzik yüklendi ve başlatılıyor'); }); audio.addEventListener('error', function() { console.error('Müzik yükleme hatası:', audio.error); musicBtn.classList.remove('playing'); musicBtn.classList.add('paused'); }); // Tarayıcı otomatik oynatma politikası için sayfa tıklama document.body.addEventListener('click', function() { if (audio.paused) { audio.play().then(() => { musicBtn.classList.remove('paused'); musicBtn.classList.add('playing'); }); } }); }); </script> </body> </html>
For More Shells & Tools