-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (72 loc) · 3.03 KB
/
Copy pathindex.html
File metadata and controls
81 lines (72 loc) · 3.03 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Baby Status Update</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Hadar & Uriel's Baby Status Update 👶</h1>
<p class="subtitle">Latest news about our Shesek 🍑</p>
</header>
<main>
<div class="status-card">
<div class="current-status">
<h2 id="status-title">Nothing new</h2>
<p id="status-message">All is well! 😊</p>
</div>
<div class="progress-container">
<div class="progress-bar">
<div class="progress-step" data-step="1">
<div class="step-circle">
<span class="step-icon">🏠</span>
</div>
<div class="step-label">Nothing new</div>
</div>
<div class="progress-step" data-step="2">
<div class="step-circle">
<span class="step-icon">⏰</span>
</div>
<div class="step-label">In Labor</div>
</div>
<div class="progress-step" data-step="3">
<div class="step-circle">
<span class="step-icon">🏥</span>
</div>
<div class="step-label">Delivery Room</div>
</div>
<div class="progress-step" data-step="4">
<div class="step-circle">
<span class="step-icon">👶</span>
</div>
<div class="step-label">Gave Birth!</div>
</div>
</div>
<div class="progress-line">
<div class="progress-fill" id="progress-fill"></div>
</div>
</div>
</div>
<div class="info-card">
<div class="last-updated">
<strong>Last updated:</strong> <span id="last-updated">Loading...</span>
</div>
</div>
<div class="celebration" id="celebration" style="display: none;">
<div class="confetti">🎉</div>
<div class="celebration-message">
<h2>Congratulations! 🎊</h2>
<p>Welcome to the world, little one! 👶💙</p>
</div>
</div>
</main>
<footer>
<p>Made with 💙 for family and friends</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>