-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 927 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="shortcut icon" type="image/png" href="list.png" />
<link rel="stylesheet" href="stylesheet.css">
<title>To-do List</title>
</head>
<body>
<main>
<header>
<div class="container">
<div id="header">
<h2><i class="fas fa-clipboard-check"></i> To-do List</h2>
<div class="user_input">
<input type="text" id="input" placeholder="I need to..."><button id="add_item">Submit</button>
</div>
</div>
</div>
</header>
<section>
<div class="container">
<div id="to_do_list"></div>
</div>
</section>
</main>
<script src="./index.js"></script>
</body>
</html>