Create main.html
Browse files
main.html
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="uz">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
+
<title>AniZone - Anime ko‘rish sayti</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css" />
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<!-- Header qismi -->
|
| 11 |
+
<header>
|
| 12 |
+
<div class="logo">
|
| 13 |
+
<img src="anizone-logo.png" alt="AniZone logotipi">
|
| 14 |
+
<h1>AniZone</h1>
|
| 15 |
+
</div>
|
| 16 |
+
<nav>
|
| 17 |
+
<ul class="nav-links">
|
| 18 |
+
<li><a href="index.html" data-key="home">🏠 Bosh sahifa</a></li>
|
| 19 |
+
<li><a href="trending.html" data-key="trending">🔥 Trenddagilar</a></li>
|
| 20 |
+
<li><a href="favorites.html" data-key="favorites">💖 Sevimlilar</a></li>
|
| 21 |
+
<li><a href="genres.html" data-key="genres">🎭 Janrlar</a></li>
|
| 22 |
+
<li><a href="new.html" data-key="new">🌟 Yangi</a></li>
|
| 23 |
+
<li><a href="contact.html" data-key="contact">📞 Aloqa</a></li>
|
| 24 |
+
</ul>
|
| 25 |
+
</nav>
|
| 26 |
+
<!-- Til tanlash menyusi -->
|
| 27 |
+
<div class="language-select">
|
| 28 |
+
<select id="language">
|
| 29 |
+
<option value="uz">🇺🇿 UZ</option>
|
| 30 |
+
<option value="en">🇬🇧 EN</option>
|
| 31 |
+
<option value="ru">🇷🇺 RU</option>
|
| 32 |
+
</select>
|
| 33 |
+
</div>
|
| 34 |
+
</header>
|
| 35 |
+
|
| 36 |
+
<!-- Asosiy kontent -->
|
| 37 |
+
<main>
|
| 38 |
+
<section class="anime-list">
|
| 39 |
+
<h2 data-key="popular">🔥 Mashhur animelar</h2>
|
| 40 |
+
<div class="anime-cards">
|
| 41 |
+
<div class="anime-card">
|
| 42 |
+
<img src="images/demonslayer.jpg" alt="Demon Slayer">
|
| 43 |
+
<h3>Demon Slayer</h3>
|
| 44 |
+
<button data-key="watch">Ko‘rish</button>
|
| 45 |
+
</div>
|
| 46 |
+
|
| 47 |
+
<div class="anime-card">
|
| 48 |
+
<img src="images/naruto.jpg" alt="Naruto">
|
| 49 |
+
<h3>Naruto</h3>
|
| 50 |
+
<button data-key="watch">Ko‘rish</button>
|
| 51 |
+
</div>
|
| 52 |
+
|
| 53 |
+
<div class="anime-card">
|
| 54 |
+
<img src="images/attackontitan.jpg" alt="Attack on Titan">
|
| 55 |
+
<h3>Attack on Titan</h3>
|
| 56 |
+
<button data-key="watch">Ko‘rish</button>
|
| 57 |
+
</div>
|
| 58 |
+
</div>
|
| 59 |
+
</section>
|
| 60 |
+
</main>
|
| 61 |
+
|
| 62 |
+
<!-- Footer -->
|
| 63 |
+
<footer>
|
| 64 |
+
<p>© 2025 AniZone | <span data-key="rights">Barcha huquqlar himoyalangan</span></p>
|
| 65 |
+
</footer>
|
| 66 |
+
|
| 67 |
+
<script src="script.js"></script>
|
| 68 |
+
</body>
|
| 69 |
+
</html>
|