-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoDoList.html
26 lines (23 loc) · 997 Bytes
/
toDoList.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
<!-- This is a to do list create by Xiaoyu Yang, which provides add to do and delete to do using html, js, bootstrap and other tools -->
<!DOCTYPE html>
<html>
<head>
<title>toDoList</title>
<link rel="stylesheet" type="text/css" href="asset/css/toDoList.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body>
<div id = "container">
<h1>To Do List</h1>
<input type="text" name="Input" placeholder="Add New Todo">
<ul>
<li><span><i class="fa fa-trash"></i></span> Learn Machine Learning</li>
<li><span><i class="fa fa-trash"></i></span> Coding LeetCode</li>
<li><span><i class="fa fa-trash"></i></span> Learn Deep Learning</li>
</ul>
</div>
<script type="text/javascript" src="asset/js/toDoList.js"></script>
</body>
</html>