forked from jessabean/too-doo-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (43 loc) · 1.87 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<!--[if gte IE 9]> <html class="no-js gte9"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html class="no-js"> <!--<![endif]-->
<head>
<title>Too Doo List</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="viewport" content="width=device-width">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,900,500' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css" type="text/css" media="all" />
<link href="https://npmcdn.com/[email protected]/css/basscss.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/application.css" type="text/css" media="all" />
</head>
<body class="flex flex-column">
<header role="banner" id="page_header" class="page-header pt4 pb2 sm-p2">
<h1>Too Doo List</h1>
</header>
<div id="main" role="main" class="page-content clearfix">
<div class="container sm-col-8 md-col-6 mx-auto p2">
<div class="container__header">
<form id="todo-form" class="todo-form">
<div id="error" class="container--error"></div>
<div class="flex">
<input type="text" id="todo-add-new" class="todo-input p1 flex-auto" placeholder="Add item" />
<button id="btn-submit" type="submit" class="btn btn--submit">Add to do</button>
</div>
</form>
</div>
<div class="container__body">
<ul id="todo-items" class="todo-list list-reset"></ul>
</div>
<div class="container__footer">
<a href="#" id="clear-todos">Clear my too doo list</a>
</div>
</div>
</div>
<footer role="contentinfo" id="page_footer" class="page-footer py3">
Made with ambition by <a href="http://jessica-eldredge.com">jessabean</a>
</footer>
<script src="js/to-do.js"></script>
</body>