-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1.02 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo-List</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:ital@0;1&family=Vollkorn:wght@400;600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body onload="init()">
<div id="container">
<h1>Todo List</h1>
<input type="text" id = "inputField" placeholder="New Task .." required>
<div class="button">+</div>
<ul>
<!-- <li id = '1'>
<div>Task 1</div>
<div class="del"><i class="fas fa-trash"></i></div>
</li>
<li id = '2'>
<div>Task 2</div>
<div class="del"><i class="fas fa-trash"></i></div>
</li> -->
</ul>
</div>
<script src="js/script.js"></script>
</body>
</html>