-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alter Überprüfung</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Fullscreen Overlay -->
<div id="overlay">
<h1>Finden Sie jetzt Ihr Alter heraus</h1>
<button id="enterButton">Jetzt starten</button>
</div>
<!-- Main Content -->
<div class="content">
<div class="form-control">
<input type="number" id="ageInput" required placeholder="Alter">
<label>
<span style="transition-delay:0ms">A</span><span style="transition-delay:50ms">l</span><span style="transition-delay:100ms">t</span><span style="transition-delay:150ms">e</span><span style="transition-delay:200ms">r</span>
</label>
</div>
<button class="btn" onclick="checkAge()">Überprüfen</button>
<div class="message" id="resultMessage"></div>
<!-- Age Cards -->
<div id="ageCards" class="age-cards">
<!-- Cards will be inserted here by JavaScript -->
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>