iching-broker-level2/frontend/index.html
Christopher Hase f5265a4e1d
All checks were successful
ci / build (push) Successful in 1m7s
run in docker part 1.0
2025-04-16 13:53:25 +02:00

67 lines
No EOL
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your I-Ging Horoscope</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(to bottom right, #fdf6e3, #e3f2fd);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
h1 {
margin-bottom: 1rem;
color: #3f51b5;
}
#myButton {
background-color: #3f51b5;
color: white;
border: none;
padding: 0.8rem 1.5rem;
font-size: 1.1rem;
border-radius: 0.5rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
#myButton:hover {
background-color: #303f9f;
}
.footer {
margin-top: 2rem;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>Do you want to know the future?</h1>
<h2> ☝️ Look into the future with your personal I-Ging Horoscope! ☝️</h2>
<p>Click on the Button to receive your personal Horoscope. 100% accuracy guaranteed!</p>
<button id="myButton">✨ Receive Horoscope ✨</button>
<div class="footer">🧘 With Love & Fortune from the Cosmos 💫</div>
</div>
<script src="./deploy.js"></script>
<script type="module" src="./event.mjs"></script>
</body>
</html>