-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (35 loc) · 1.49 KB
/
index.html
File metadata and controls
43 lines (35 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TodoList App</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Archivo+Black&family=Bebas+Neue&display=swap" rel="stylesheet">
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Custom Styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<h1 id="header">TodoList App</h1>
<small id="description">Store all your tasks for the day and keep track of them.</small>
<form id="todoForm">
<input type="text" title="Todo Name" placeholder="Enter your task..." id="todoEnter" autocomplete="off">
<button id="enterButton" type="submit">Add</button>
</form>
<div id="error"></div>
<div id="todoListDiv">
<ul id="todoList"></ul>
</div>
</main>
<footer>
Made by
<a href="https://github.com/devOlabode" rel="noopener noreferrer" target="_blank">Samuel Olabode</a>
</footer>
<script src="script.js"></script>
</body>
</html>