47 lines
2.2 KiB
HTML
47 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Тестовый лендинг</title>
|
|
<style>
|
|
:root{--ink:#0F1218;--cyan:#00E5FF;--cyan-50:#E8FCFF;--white:#fff;--gray-500:#5B6573;--gray-100:#F2F4F7}
|
|
*{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:var(--ink);color:var(--white);padding:80px 24px}
|
|
.hero h1{font-size:56px;font-weight:800;line-height:1.05;margin-bottom:24px}
|
|
.hero p{font-size:20px;color:#9aa3b2;max-width:600px;margin-bottom:32px}
|
|
.btn{display:inline-block;background:var(--cyan);color:var(--ink);padding:14px 28px;border-radius:8px;font-weight:700;text-decoration:none}
|
|
.section{padding:80px 24px}
|
|
.section h2{font-size:36px;font-weight:700;margin-bottom:24px}
|
|
.card{background:var(--gray-100);border-radius:16px;padding:32px;margin-bottom:16px}
|
|
@media (max-width:640px){.hero h1{font-size:36px}.section h2{font-size:28px}.container{padding:48px 20px}}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Тестовый лендинг</h1>
|
|
<p>Это простой пример сайта, который демонстрирует базовый дизайн Vibe42.</p>
|
|
<a class="btn" href="#features">Узнать больше</a>
|
|
</div>
|
|
</section>
|
|
<section id="features" class="section">
|
|
<div class="container">
|
|
<h2>Особенности</h2>
|
|
<div class="card">🚀 Быстрая загрузка без серверов</div>
|
|
<div class="card">🎨 Современный дизайн по системе Vibe42</div>
|
|
<div class="card">📱 Полностью адаптивный под мобильные устройства</div>
|
|
</div>
|
|
</section>
|
|
<section class="section" style="background:#f9fafb;">
|
|
<div class="container">
|
|
<h2>Контакты</h2>
|
|
<p>Email: <a href="mailto:example@example.com">example@example.com</a></p>
|
|
<p>Telegram: <a href="https://t.me/example">@example</a></p>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|