summaryrefslogtreecommitdiff
path: root/index.html
blob: 4c55140e6841503691a3858dee272e55dc64421b (plain)
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
<!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>