presspage

This commit is contained in:
2025-09-17 16:19:38 +00:00
parent 726584a1ac
commit 78e3950e1e

22
press_page.html Normal file
View File

@@ -0,0 +1,22 @@
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Имя Фамилия</title>
<style>
body{margin:0;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial;background:#0f1724;color:#e6eef6;display:flex;justify-content:center;align-items:center;height:100vh}
.card{background:#0b1220;padding:30px;border-radius:14px;box-shadow:0 8px 30px rgba(2,6,23,0.6);max-width:400px;width:100%;text-align:center}
h1{margin:0 0 12px;font-size:28px}
p{margin:6px 0;color:#9aa4b2}
a{color:#6ee7b7;text-decoration:none}
</style>
</head>
<body>
<div class="card">
<h1>Имя Фамилия</h1>
<p><strong>Место работы:</strong> Компания / Организация</p>
<p><strong>Email:</strong> <a href="mailto:press@example.com">press@example.com</a></p>
</div>
</body>
</html>