-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1.29 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>
<head>
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Manrope&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600&display=swap" rel="stylesheet">
<title>To do list</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>To-Do list</h1>
<div class="input_div">
<input class="input" type="text" placeholder="Your list...">
<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"><i class="fas fa-pen"></i></button>
<button class="removeButton"><i class="fas fa-check"></i></button>
</div>
-->
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>