project_1/index.html

87 lines
3.2 KiB
HTML
Raw Permalink 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{text-align:center;padding-top:120px}
.hero h1{font-size:56px;font-weight:800;line-height:1.05;margin-bottom:16px}
.hero p{font-size:20px;color:var(--gray-500);max-width:500px;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;transition:background .2s}
.btn:hover{background:#1be5ff}
.features{background:var(--gray-100)}
.features h2{font-size:36px;font-weight:700;margin-bottom:32px;text-align:center}
.features .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.card{background:var(--white);border-radius:16px;padding:32px}
.card .icon{font-size:40px;margin-bottom:12px}
.card h3{font-size:22px;font-weight:700;margin-bottom:8px}
.card p{color:var(--gray-500)}
.cta{text-align:center}
.cta h2{font-size:36px;font-weight:700;margin-bottom:12px}
.cta p{color:var(--gray-500);margin-bottom:32px}
.footer{text-align:center;padding:40px 24px;color:var(--gray-500);font-size:14px;border-top:1px solid var(--gray-100)}
@media(max-width:640px){
.hero h1{font-size:36px}.features h2,.cta h2{font-size:28px}
.container{padding:48px 20px}.hero{padding-top:80px}
}
</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="features">
<div class="container">
<h2>Что мы предлагаем</h2>
<div class="grid">
<div class="card">
<div class="icon"></div>
<h3>Быстро</h3>
<p>Мгновенная загрузка и высокая производительность на любых устройствах.</p>
</div>
<div class="card">
<div class="icon"></div>
<h3>Красиво</h3>
<p>Современный минималистичный дизайн, который нравится пользователям.</p>
</div>
<div class="card">
<div class="icon">🔒</div>
<h3>Надёжно</h3>
<p>Стабильная работа без сбоев и простоя — 24/7.</p>
</div>
</div>
</div>
</section>
<section class="cta">
<div class="container">
<h2>Готовы начать?</h2>
<p>Свяжитесь с нами любым удобным способом.</p>
<a class="btn" href="mailto:hello@example.com">Написать</a>
</div>
</section>
<footer class="footer">
<p>© 2026 Мой проект. Все права защищены.</p>
</footer>
</body>
</html>