-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (27 loc) · 1.39 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
34
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title> Todo List</title>
<script type = "text/javascript" src = "assets/js/lib/jquery-3.5.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">">
<link rel="stylesheet" href="assets/css/todos.css">
</head>
<body>
<div id = "container">
<h1>Todo List <i class = "fa fa-plus"></i></h1>
<input type="text" placeholder="Add new to do">
<ul>
<li><span><i class ="fa fa-trash"></i></span> to potion class</li>
<li><span><i class="fa fa-trash"></i></span> busy new stuff</li>
<li><span><i class="fa fa-trash"></i></span> kill me</li>
</ul>
</div>
<script type = "text/javascript" src = "assets/js/todos.js"></script>
</body>
</html>