-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.65 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>i C H O R E S</title>
<link href="https://fonts.googleapis.com/css?family=Fjalla+One|Roboto+Mono:100,300,400" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>iCHORES</h1>
</header>
<main>
<div id="alert">
<!-- Forgot to add a new to do? This is where you'll be alerterd -->
</div>
<div class="addToDoWrapper">
<label for="toDoInput">Add new todo:</label>
<input type="text" name="toDoInput" id="toDoInput" />
<button id="addButton">Add to do</button>
</div>
<div class="listWrapper">
<div class="toDoList">
<h2>Stuff to do:</h2>
<ul id="toDos">
<!-- This is where JavaScript does it's magic -->
</ul>
</div>
<div class="doneList">
<h2>Done deal:</h2>
<ul id="doneToDo">
<!-- This is where JavaScript does it's magic -->
</ul>
</div>
</div>
<!-- /.listWrapper.collapse -->
<button id="emptyAllButton">Empty lists</button>
</main>
<footer>
<p>This is just a god damn footer</p>
<a href="https://github.com/vctrklndr">https://github.com/vctrklndr</a>
</footer>
<script src="main.js"></script>
</body>
</html>