Files
StreamCore_IP/index.html
2025-05-24 11:20:31 +04:00

71 lines
3.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Главная | StreamCore</title>
<link rel="stylesheet" href="index.css" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="logo">🎮 StreamCore</div>
<input type="checkbox" id="nav-toggle" class="nav-toggle" />
<label for="nav-toggle" class="burger-menu" aria-label="Меню">
<span></span>
<span></span>
<span></span>
</label>
<nav class="navbar">
<ul class="nav-links">
<li><a href="index.html" aria-current="page">Главная</a></li>
<li><a href="page2.html">Каталог</a></li>
<li><a href="page3.html">Трансляции</a></li>
<li><a href="page4.html">Профиль</a></li>
<li><a href="page5.html">О нас</a></li>
</ul>
</nav>
</header>
<main class="page">
<h1>Добро пожаловать в StreamCore</h1>
<p>Твой портал в мир киберспорта, электронной музыки и цифрового искусства. Следи за новыми трансляциями, знакомься с артистами и участвуй в событиях!</p>
<section class="features-grid">
<article class="feature-item">
<h3>Киберспорт</h3>
<p>Самые масштабные турниры и захватывающие матчи в прямом эфире.</p>
<button onclick="location.href='streams.html'">Смотреть трансляции</button>
</article>
<article class="feature-item">
<h3>Электронная музыка</h3>
<p>Эксклюзивные лайв-сеты от лучших диджеев и музыкантов.</p>
<button onclick="location.href='catalog.html#music'">Открыть каталог</button>
</article>
<article class="feature-item">
<h3>Цифровое искусство</h3>
<p>Выставки, NFT-галереи и творческие проекты от художников.</p>
<button onclick="location.href='catalog.html#art'">Посмотреть работы</button>
</article>
</section>
</main>
<footer class="footer">
<div class="footer-info">
<p>Контакты: info@streamcore.com | +7 (999) 123-45-67</p>
<p>Часы работы: Пн–Вс, 10:0022:00</p>
<p>Адрес: Неон-сити, ул. Цифровая, д.42</p>
</div>
<div class="footer-section">
<div class="social-icons">
<a href="#" aria-label="Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" aria-label="ВКонтакте"><i class="fab fa-vk"></i></a>
<a href="#" aria-label="Telegram"><i class="fab fa-telegram-plane"></i></a>
</div>
</div>
</footer>
</body>
</html>