forked from cantinac/to-do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (21 loc) · 828 Bytes
/
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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My Todo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="wrap">
<header class="header">
<input type="text" id="mainInput" class="mainInput" placeholder="What do you need to get done?"><a id="submit" class="submit"></a>
</header>
<ul id="mainList" class="mainList"></ul>
</div>
<script src="js/todo.js"></script>
</body>
</html>