Add landing page
This commit is contained in:
commit
b64762af11
60
index.html
Normal file
60
index.html
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Project 2 — Креативный лендинг</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||||
|
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.card {
|
||||||
|
text-align: center;
|
||||||
|
padding: 3rem;
|
||||||
|
background: rgba(255,255,255,0.05);
|
||||||
|
border: 1px solid rgba(255,255,255,0.1);
|
||||||
|
border-radius: 24px;
|
||||||
|
backdrop-filter: blur(20px);
|
||||||
|
max-width: 480px;
|
||||||
|
margin: 0 1rem;
|
||||||
|
}
|
||||||
|
.badge {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.3rem 1rem;
|
||||||
|
background: rgba(99,102,241,0.3);
|
||||||
|
border-radius: 50px;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
h1 { font-size: 2.8rem; margin-bottom: 1rem; }
|
||||||
|
p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 2rem; line-height: 1.6; }
|
||||||
|
.btn {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.9rem 2.2rem;
|
||||||
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
||||||
|
color: #fff;
|
||||||
|
border-radius: 50px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: 600;
|
||||||
|
transition: all 0.3s;
|
||||||
|
box-shadow: 0 4px 20px rgba(99,102,241,0.4);
|
||||||
|
}
|
||||||
|
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(99,102,241,0.6); }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="card">
|
||||||
|
<span class="badge">Project 2</span>
|
||||||
|
<h1>Стартуем</h1>
|
||||||
|
<p>Минималистичный лендинг с тёмной эстетикой. Быстро, красиво, по делу.</p>
|
||||||
|
<a href="#" class="btn">Узнать больше</a>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue
Block a user