50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ren_1 — Добро пожаловать</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, #667eea 0%, #764ba2 100%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
padding: 3rem;
|
|
background: rgba(255,255,255,0.1);
|
|
border-radius: 20px;
|
|
backdrop-filter: blur(10px);
|
|
max-width: 500px;
|
|
margin: 0 1rem;
|
|
}
|
|
h1 { font-size: 3rem; margin-bottom: 1rem; }
|
|
p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 0.8rem 2rem;
|
|
background: #fff;
|
|
color: #764ba2;
|
|
border-radius: 50px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: transform 0.2s;
|
|
}
|
|
.btn:hover { transform: scale(1.05); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Ren_1</h1>
|
|
<p>Простой и стильный лендинг. Всё гениальное — просто.</p>
|
|
<a href="#" class="btn">Начать</a>
|
|
</div>
|
|
</body>
|
|
</html>
|