Files
docker-test/html/index.html
2025-08-25 18:19:15 +01:00

42 lines
939 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello Dokploy</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(to top, #00111a, #003344);
color: white;
font-family: sans-serif;
overflow: hidden;
}
h1 {
position: relative;
font-size: 2rem;
}
.rocket {
display: inline-block;
animation: launch 4s ease-in-out infinite;
}
@keyframes launch {
0% { transform: translateY(0); opacity: 1; }
70% { transform: translateY(-200px); opacity: 1; }
100% { transform: translateY(-400px); opacity: 0; }
}
</style>
</head>
<body>
<h1>
Hello from Gitea + Dokploy
<span class="rocket">🚀</span>
</h1>
</body>
</html>