-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (30 loc) · 999 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
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webpack Exercise</title>
<script src="https://kit.fontawesome.com/6e8f4ae605.js" crossorigin="anonymous"></script>
<script defer src="index.bundle.js"></script></head>
<body>
<section class="todo-list">
<div id="myDIV" class="header">
<div class="header-container flex-between">
<h3>Today's To Do</h3>
<i class="fas fa-sync"></i>
</div>
<hr>
<form class="flex-between">
<input type="text" id="myInput" placeholder="Title...">
<i class="fas fa-arrow-left"></i>
</form>
<hr>
</div>
<ul class="items" id="items">
</ul>
<div class="btn-container">
<button class="btn" type="button" id="btn-clearAll"> Clear all completed </button>
</div>
</section>
</body>
</html>