-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 1002 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List App</title>
<link rel="stylesheet" href="mystyle.css">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
</head>
<body>
<h1><span class="heading">TODO</span> List</h1>
<div class="input_div">
<input type="text" class="input" placeholder="What do you want to do...">
<button class="addButton"><i class="fas fa-plus"></i></button>
</div>
<div class="container">
<!-- <div class="item">
<input type="text" class="item_input" disabled>
<button class = "editButton">Edit</button>
<button class="removeButton">Remove</button>
</div> -->
</div>
<script type="text/javascript" src="main.js"></script>
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js"></script>
</body>
</html>