-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathind1.html
More file actions
41 lines (37 loc) · 1.15 KB
/
Copy pathind1.html
File metadata and controls
41 lines (37 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Cat Animation + To-Do List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Cat Animation Container -->
<div class="image-container" id="catBox">
<img src="cat2.svg" alt="Cat in mug" class="base">
<img src="cat3.svg" alt="Cat peeking" class="nearby">
<img src="cat5.svg" alt="Cat partially out" class="hover1">
<img src="cat4.svg" alt="Cat fully out" class="hover2">
</div>
<!-- To-Do List Modal -->
<div id="todoModal" class="modal hidden">
<div class="modal-content">
<button id="closeBtn">✖</button>
<h2>🐾 To-Do List</h2>
<ul id="todoList"></ul>
<div class="input-row">
<input type="text" id="todoInput" placeholder="Add a task..." />
</div>
<div class="input-row">
<input type="date" id="dateInput" />
<input type="time" id="timeInput" />
</div>
<div class="input-row">
<button id="addBtn" title="Add Task">➕ Add Task</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>