narisuy-mne-testovyy-lending/index.html

52 lines
2.4 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>Тестовый лендинг</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);text-align:center;padding:120px 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:0 auto 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;text-align:center}
.cards{display:flex;gap:24px;flex-wrap:wrap;justify-content:center}
.card{background:var(--gray-100);border-radius:16px;padding:32px;flex:1 1 300px;max-width:400px}
@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>Это тестовый лендинг, созданный быстро и просто. Здесь можно разместить информацию о продукте, услуге или событии.</p>
<a class="btn" href="#features">Узнать больше</a>
</div>
</section>
<section id="features" class="section">
<div class="container">
<h2>Преимущества</h2>
<div class="cards">
<div class="card">
<h3>Простота</h3>
<p>Легко адаптировать под любые задачи без сложных фреймворков.</p>
</div>
<div class="card">
<h3>Скорость</h3>
<p>Мгновенная загрузка благодаря минимальному CSS и HTML.</p>
</div>
<div class="card">
<h3>Адаптивность</h3>
<p>Отлично выглядит на мобильных устройствах и десктопах.</p>
</div>
</div>
</div>
</section>
</body>
</html>