test-kids/index.html
2026-06-19 05:47:50 +00:00

88 lines
4.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>KidsLand</title>
<style>
:root{--ink:#0F1218;--cyan:#00E5FF;--cyan-50:#E8FCFF;--white:#fff;--gray-500:#5B6573;--gray-100:#F2F4F7;--pink:#FF6B9D;--yellow:#FFD93D;--green:#6BCB77;--purple:#9B59B6}
*{box-sizing:border-box;margin:0;padding:0}
body{font:17px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Inter,system-ui,sans-serif;color:var(--ink);background:var(--white)}
.container{max-width:1140px;margin:0 auto;padding:80px 24px}
.hero{background:linear-gradient(135deg, var(--purple), var(--pink));color:var(--white);text-align:center}
.hero h1{font-size:64px;font-weight:800;line-height:1.05;margin-bottom:16px}
.hero .emoji-big{font-size:80px;display:block;margin-bottom:8px}
.hero p{font-size:22px;color:rgba(255,255,255,.85);max-width:500px;margin:0 auto 32px}
.btn{display:inline-block;background:var(--yellow);color:var(--ink);padding:16px 36px;border-radius:50px;font-weight:700;font-size:18px;text-decoration:none;transition:.2s}
.btn:hover{transform:scale(1.05);background:#ffe066}
.section{text-align:center}
.section h2{font-size:36px;font-weight:700;margin-bottom:48px}
.section h2 span{font-size:40px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{background:var(--gray-100);border-radius:20px;padding:36px 28px;text-align:center;transition:.2s}
.card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.08)}
.card .icon{font-size:48px;display:block;margin-bottom:16px}
.card h3{font-size:22px;font-weight:700;margin-bottom:12px}
.card p{color:var(--gray-500);font-size:15px}
.card:nth-child(1){border-bottom:4px solid var(--pink)}
.card:nth-child(2){border-bottom:4px solid var(--yellow)}
.card:nth-child(3){border-bottom:4px solid var(--green)}
.contact{background:var(--cyan-50);text-align:center}
.contact h2{margin-bottom:16px}
.contact p{color:var(--gray-500);margin-bottom:32px;font-size:18px}
.btn-telegram{display:inline-block;background:#0088cc;color:var(--white);padding:14px 32px;border-radius:50px;font-weight:700;font-size:18px;text-decoration:none;transition:.2s}
.btn-telegram:hover{background:#0099dd;transform:scale(1.05)}
.footer{text-align:center;padding:32px 24px;color:var(--gray-500);font-size:14px}
@media(max-width:768px){
.cards{grid-template-columns:1fr;gap:16px}
.hero h1{font-size:40px}
.hero .emoji-big{font-size:48px}
.section h2{font-size:28px}
.container{padding:48px 20px}
}
</style>
</head>
<body>
<section class="hero">
<div class="container">
<span class="emoji-big">🚀</span>
<h1>Добро пожаловать в KidsLand!</h1>
<p>Место, где дети играют, учатся и растют. Веселье каждый день!</p>
<a class="btn" href="#activities">Начать приключение →</a>
</div>
</section>
<section id="activities" class="section">
<div class="container">
<h2><span>🎯</span> Чем можно заняться</h2>
<div class="cards">
<div class="card">
<span class="icon">🎮</span>
<h3>Игры</h3>
<p>Весёлые и развивающие игры для детей любого возраста</p>
</div>
<div class="card">
<span class="icon">🎨</span>
<h3>Рисование</h3>
<p>Яркие краски, кисти и бесконечное вдохновение</p>
</div>
<div class="card">
<span class="icon">📚</span>
<h3>Чтение</h3>
<p>Интересные книги и сказки на любой вкус</p>
</div>
</div>
</div>
</section>
<section class="contact">
<div class="container">
<h2>✨ Остались вопросы?</h2>
<p>Напишите нам — мы всегда рады помочь!</p>
<a class="btn-telegram" href="https://t.me/yerasyl11" target="_blank">✉️ Написать в Telegram</a>
</div>
</section>
<div class="footer">
Сделано с ❤️ для детей
</div>
</body>
</html>