iching-broker-level2/frontend/index.html

67 lines
1.6 KiB
HTML
Raw Permalink Normal View History

2025-04-04 09:48:30 +00:00
<!DOCTYPE html>
<html lang="de">
2025-04-14 10:44:59 +00:00
<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">
2025-04-15 14:28:48 +00:00
<h1>Do you want to know the future?</h1>
<h2> ☝️ Look into the future with your personal I-Ging Horoscope! ☝️</h2>
2025-04-14 10:44:59 +00:00
<p>Click on the Button to receive your personal Horoscope. 100% accuracy guaranteed!</p>
<button id="myButton">✨ Receive Horoscope ✨</button>
2025-04-15 14:28:48 +00:00
<div class="footer">🧘 With Love & Fortune from the Cosmos 💫</div>
2025-04-14 10:44:59 +00:00
</div>
2025-04-16 11:53:25 +00:00
<script src="./deploy.js"></script>
2025-04-14 10:44:59 +00:00
<script type="module" src="./event.mjs"></script>
</body>
2025-04-04 09:48:30 +00:00
</html>