-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.26 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lily's Potty Timer!</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap" rel="stylesheet">
</head>
<body>
<h1>Lily's Potty Timer!</h1>
<div class="gauge-container">
<svg class="gauge" viewBox="0 0 200 200">
<circle class="gauge-background" cx="100" cy="100" r="90" />
<path class="gauge-fill" d="" />
</svg>
<div class="gauge-cover">0%</div>
<img src="lily_normal.png" alt="Lily" class="lily-image">
</div>
<div class="refill-buttons">
<button data-refill="20">Potty Time!</button>
</div>
<div class="stickers">Stickers: 0</div>
<div class="star-stickers"></div>
<button id="pauseButton">Pause</button>
<audio id="cheerSound">
<source src="cheer.mp3" type="audio/mpeg">
</audio>
<audio id="crySound">
<source src="cry.mp3" type="audio/mpeg">
</audio>
<script src="script.js"></script>
</body>
</html>