dark-data-vault / index.html
qwtqwty's picture
сайт который будет просто приветствовать пользователя это будет сайт который просто хранит в себе данные, монотонный сайт черного и зеленого цвета, не нужно нагруженности, вкладок, просто приветствие и если что название сайта data.chechensky.ru
e78c6fc verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>data.chechensky.ru</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
dark: '#0a0a0a',
neon: '#39FF14'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');
.typewriter {
font-family: 'Major Mono Display', monospace;
}
.glow {
text-shadow: 0 0 5px #39FF14, 0 0 10px #39FF14;
}
.terminal-cursor {
animation: blink 1s step-end infinite;
}
@keyframes blink {
from, to { opacity: 1 }
50% { opacity: 0 }
}
body {
background-color: #0a0a0a;
overflow-x: hidden;
}
.scanline {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(57, 255, 20, 0.05) 0%,
rgba(57, 255, 20, 0) 10%
);
background-size: 100% 8px;
pointer-events: none;
animation: scan 8s linear infinite;
}
@keyframes scan {
0% { transform: translateY(-100%); }
100% { transform: translateY(100%); }
}
</style>
</head>
<body class="bg-dark text-neon min-h-screen flex flex-col">
<div class="scanline"></div>
<header class="border-b border-neon/20 py-6 px-4">
<div class="container mx-auto flex justify-between items-center">
<h1 class="text-2xl font-bold glow">data.chechensky.ru</h1>
</div>
</header>
<main class="flex-grow flex items-center justify-center">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<div class="typewriter text-5xl mb-8 glow">
<span>WELCOME</span>
</div>
<p class="text-neon/80 mb-12 text-xl">
THIS IS A DATA VAULT<br>
NOTHING MORE, NOTHING LESS
</p>
</div>
</div>
</main>
<footer class="border-t border-neon/20 py-6 px-4">
<div class="container mx-auto text-center text-neon/50">
data.chechensky.ru - minimal data storage
</div>
</body>
</html>