INSTALL
Your browser does not support the video tag.
Bhavesh Navgire
#🙏श्री गुरुदेव दत्त💐 Khalil gaming website Delhi aahe<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>🎮 Gaming Hub</title> <style> body{ margin:0; font-family:Arial, sans-serif; background:#0f0f0f; color:#fff; } /* Header */ header{ text-align:center; padding:25px; background:linear-gradient(90deg,#ff416c,#ff4b2b); box-shadow:0 0 25px rgba(255,75,43,0.6); } h1{margin:0;} /* Sections */ section{ padding:40px 20px; } .section-title{ text-align:center; margin-bottom:30px; font-size:2em; } /* Grid */ .grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:25px; } /* Card */ .card{ background:#1a1a1a; padding:15px; border-radius:15px; transition:0.4s; text-align:center; box-shadow:0 0 15px rgba(0,0,0,0.5); } .card:hover{ transform:translateY(-10px); box-shadow:0 0 25px #ff416c; } .card img{ width:100%; border-radius:12px; } /* Button */ .btn{ display:inline-block; margin-top:10px; padding:10px 20px; background:#ff416c; color:white; border-radius:8px; text-decoration:none; font-weight:bold; transition:0.3s; } .btn:hover{ background:white; color:black; } </style> </head> <body> <header> <h1>🎮 Gaming Hub</h1> </header> <!-- Top Games --> <section> <h2 class="section-title">🔥 Top Games</h2> <div class="grid"> <div class="card"> <img src="https://via.placeholder.com/300x200"> <h3>GTA V</h3> <p>Platform: PC / Console</p> <a href="https://www.rockstargames.com/gta-v" target="_blank" class="btn">View Details</a> </div> <div class="card"> <img src="https://via.placeholder.com/300x200"> <h3>Call of Duty: Warzone</h3> <p>Platform: PC / Console</p> <a href="https://www.callofduty.com/warzone" target="_blank" class="btn">View Details</a> </div> <div class="card"> <img src="https://via.placeholder.com/300x200"> <h3>BGMI</h3> <p>Platform: Android</p> <a href="https://www.battlegroundsmobileindia.com" target="_blank" class="btn">View Details</a> </div> </div> </section> <!-- Game Companies --> <section> <h2 class="section-title">🏭 Game Companies</h2> <div class="grid"> <div class="card"> <h3>Rockstar Games</h3> <a href="https://www.rockstargames.com" target="_blank" class="btn">Visit</a> </div> <div class="card"> <h3>Activision</h3> <a href="https://www.activision.com" target="_blank" class="btn">Visit</a> </div> <div class="card"> <h3>Krafton</h3> <a href="https://www.krafton.com" target="_blank" class="btn">Visit</a> </div> </div> </section> <!-- Gaming Resources --> <section> <h2 class="section-title">🌐 Gaming Resources</h2> <div class="grid"> <div class="card"> <h3>Steam</h3> <a href="https://store.steampowered.com" target="_blank" class="btn">Explore</a> </div> <div class="card"> <h3>Epic Games</h3> <a href="https://www.epicgames.com" target="_blank" class="btn">Explore</a> </div> <div class="card"> <h3>Twitch</h3> <a href="https://www.twitch.tv" target="_blank" class="btn">Explore</a> </div> </div> </section> </body> </html>
661 ने देखा
10
7
कमेंट
Your browser does not support JavaScript!