-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (42 loc) · 1.3 KB
/
index.html
File metadata and controls
57 lines (42 loc) · 1.3 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
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<!--
A simple to do list by Ege Akat.
-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>To Do List</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
</head>
<body>
<div class="load">
<div class="loader"></div>
</div>
</div>
<div class="bg">
<div class="head">
<h1 class="title">Welcome, Root</h1>
<h2 class="secondary-title">What motivates you today?</h2>
<div class="border"></div>
<h3 id="time"></h3>
</div>
<div class="list-container">
<table id="table" cellspacing="0">
<tr class="headings">
<th id="task-heading">Task (0/0 Completed)</th>
<th>Due Date</th>
<th>Status</th>
</tr>
</table>
<span id="add-task">Add a task</span>
</div>
<footer>
Made by Ege Akat
</footer>
</div>
<script src="main.js"></script>
</body>
</html>