-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·30 lines (25 loc) · 797 Bytes
/
index.html
File metadata and controls
executable file
·30 lines (25 loc) · 797 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Todo List</title>
<!--jQuery file-->
<script type="text/javascript" src="assets/js/lib/jquery.js"></script>
<!--Font Awesome CSS-->
<link type="text/css" href="assets/css/all.css" rel="stylesheet">
<!--Custom css file-->
<link type="text/css" href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>to-do list project <i class="fa fa-plus"></i></h1>
<input placeholder="Add New To-do" type="text">
<ul>
</ul>
</div>
<!--Custom js file-->
<script type="text/javascript" src="assets/js/index.js"></script>
</body>
</html>