-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<title>
Todo list with NEJ
</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="app">
<div class="title">
<span>todos</span>
</div>
<div class="list-container">
<input id="input" class="input" placeholder="What needs to be done?" type="text" autofocus />
<div id="todolist"></div>
<div class="todo-bottom">
<div class="todo-count">
<span id="count"></span> items left
</div>
<div class="todo-type" id="allBut">All</div>
<div class="todo-type" id="actBut">Active</div>
<div class="todo-type" id="comBut">Complete</div>
</div>
</div>
<div class="footer">
<p>Written by summer</p>
<p>Image from 500px: <a target="_black" href=" https://500px.me/community/photo-details/500px248408327"> https://500px.me/community/photo-details/500px248408327</a></p>
</div>
</div>
<script src="./lib/nej/src/define.js"></script>
<script src="./index.js"></script>
</body>
</html>