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">
|
|
|
|
<h1>🧘 My I-Ging Horoscope</h1>
|
|
|
|
<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 & Chance from the Cosmos 💫</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="module" src="./event.mjs"></script>
|
|
|
|
</body>
|
2025-04-04 09:48:30 +00:00
|
|
|
</html>
|