-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (27 loc) · 1.21 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
32
33
<!DOCTYPE html>
<html>
<head>
<title>TODO List</title>
<!-- custom css file -->
<link rel="stylesheet" type="text/css"
href="/Users/siddhantjayantangore/Desktop/Web Development/Models/Todo/assets/css/styles.css">
<!-- built in jQuery -->
<script src="/Users/siddhantjayantangore/Desktop/Web Development/Models/Todo/assets/js/lib/jquery-3.4.1.js"></script>
<link href="https://fonts.googleapis.com/css?family=Advent+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="container">
<h1>ToDo List <i class="fa fa-plus"></i></h1>
<input type="text" name="" id="inputField" placeholder="Add new ToDo">
<ul>
<li><span><i class="fa fa-trash"></i></span> sleep</li>
<li><span><i class="fa fa-trash"></i></span> go to gym</li>
<li><span><i class="fa fa-trash"></i></span> have brekfast</li>
</ul>
</div>
<!-- this is the custom js file -->
<script src="/Users/siddhantjayantangore/Desktop/Web Development/Models/Todo/assets/js/todos.js"
type="text/javascript"></script>
</body>
</html>