-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.63 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home Page</title>
<link href="style/style.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="public/images/Ahmed-logo.jpg" />
</head>
<body>
<!-- Content Container -->
<main aria-label="Main">
<div class="container" aria-label="Container">
<!-- Left Content Container -->
<div class="leftContainer">
<div class="todoList" aria-label="Task Form">
<h2>Todo List</h2>
<div class="inputContainer">
<form id="form">
<input
type="text"
id="taskInput"
placeholder="Add a new task..."
/>
<button type="submit" id="addTask">Add Task</button>
</form>
</div>
</div>
<div class="tasksContainer" aria-label="Tasks Container">
<!-- Tasks will be added here -->
</div>
</div>
</div>
<!-- Main Content Container -->
<div class="rightContainer"></div>
</main>
<!-- Footer with Theme Toggle Button -->
<footer class="bar" aria-label="Footer">
<button id="toggleTheme" title="Toggle Theme" aria-label="Theme Toggle">
<img
id="toggleThemeIcon"
src="public/images/dark-svgrepo-com.svg"
alt="Toggle Theme Icon"
width="50"
height="50"
/>
</button>
</footer>
<script type="module" src="scripts/script.js"></script>
</body>
</html>