-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
27 lines (27 loc) · 926 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
<html>
<head>
<title>To-Do List</title>
<script src="app.js"></script>
</head>
<body>
<font face="courier">
<center><h1><b><u>To-Do List</u></b></h1></center>
<hr>
<label>New Item:</label>
<input type ="text" size="50" placeholder="Enter new to-do here..." id="new"> <button id="add" onClick="addlistitem()">+</button>
<br><br>
<font color="red"><b>Red means incomplete</b></font>
<br>
<font color="green"><b>Green means complete</b></font>
<br>
Click on the respective item to change status
<br>
Click on 'X' to remove item
<br>
<hr>
<center><table width="80%" cellpadding="10" id="table">
</table></center>
</font>
<div style="position: absolute; bottom: 0; right: 0;">Beta Version</div>
</body>
</html>