-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
31 lines (26 loc) · 935 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
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<title>Task List</title>
<meta charset="utf-8" />
<!-- CSS -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" />
</head>
<body>
<div id="wrapper" class="cf">
<div id="sidebar">
<h1>Task List</h1>
<p>Add tasks to your list by typing to the right and press-ing enter. You may then view pending tasks below.</p>
<ul id="task-list"></ul>
</div> <!-- end #sidebar -->
<div id="task-container">
<!-- textarea for the user to add tasks -->
<textarea id="task" name="task" placeholder="I need to..."></textarea>
</div> <!-- end .task-container -->
</div> <!-- end #wrapper -->
<!-- JS -->
<script src="js/script.js"></script>
</body>
</html>