summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorlucashemi <lucasxberger@gmail.com>2023-01-09 00:15:01 -0300
committerlucashemi <lucasxberger@gmail.com>2023-01-09 00:15:01 -0300
commitb1aee1997884e4bbd8d0667546ff96977550cb57 (patch)
treeb6f5d328eb6b67ac82fe0fcd6054ff612c8f2fd1 /index.html
first commit
Diffstat (limited to 'index.html')
-rw-r--r--index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..4c55140
--- /dev/null
+++ b/index.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset='utf-8'>
+ <meta http-equiv='X-UA-Compatible' content='IE=edge'>
+ <title>To-Do-List</title>
+ <meta name='viewport' content='width=device-width, initial-scale=1'>
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
+ <link rel='stylesheet' type='text/css' media='screen' href='main.css'>
+</head>
+<body>
+ <main>
+ <h1>To-Do-List</h1>
+ <div class="container">
+ <ul class="list" id="list">
+ <form action="" id="form" method="post">
+ <input autofocus type="text" name="add" class="add" placeholder="What do you need to do?" maxlength="250">
+ <input hidden type="submit" value="Add Item">
+ </form>
+ </ul>
+ </div>
+ </main>
+ <script src='app/edit.js'></script>
+ <script src='app/delete.js'></script>
+ <script src='app/check.js'></script>
+ <script src='app/list.js'></script>
+</body>
+</html> \ No newline at end of file