Testhtml / index.html
Aleksmorshen's picture
Rename index.js to index.html
f2af46d verified
raw
history blame contribute delete
No virus
1.1 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Сюрпрайз!</title>
<style>
body {
background-color: black;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
#neonText {
font-size: 2em;
color: #00ccff;
text-align: center;
text-transform: uppercase;
font-weight: bold;
text-shadow: 0 0 10px #00ccff, 0 0 20px #00ccff, 0 0 30px #00ccff, 0 0 40px #00ccff;
animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
0% {
opacity: 0.6;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<div id="neonText">Эльяра я Люблю тебя</div>
<script>
// JavaScript код, если необходим
</script>
</body>
</html>