-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.32 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
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Javascript learning</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
<link rel='stylesheet' href='style.css'>
</head>
<body>
<div id='content'>
<div id="navigation">
<h1>A simple todo list.</h1>
<h2>Created in pure vanilla JS.
<a href='https://github.com/aboutroots/'>@aboutroots</a>
</h2>
<span id='mainPanel'>
<div class='bigButton' onclick="handlers.toggleAll()">
<span class="buttonText">Toggle All</span>
<span class="fas fa-check-double"></span>
</div>
<input id="addTodoTextInput" type="text"></input>
<div class='bigButton' onclick="handlers.addTodo()">
<span class="buttonText">Add</span>
<span class="fas fa-plus"></span>
</div>
</span>
</div>
<ul id='todoList'>
<ul>
</div>
<script src='practical_js.js'></script>
</body>
</html>