-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
27 lines (26 loc) · 902 Bytes
/
todo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>To-do list</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="todo.css">
<title></title>
</head>
<body>
<div class="container">
<header>
<h1>TO-DO LIST </h1>
<i class="fa fa-plus plus" aria-hidden="true"></i>
</header>
<input type="text" name="todo" value = "Add New To-do">
<div class="todos">
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="todo.js"></script>
</body>
</html>