-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 689 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 689 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ClearTax SpreadSheet</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="head-wrap">
<h4>This table can do the following: </h4>
<ul>
<li>Contains MxN cells</li>
<li>add or remove rows</li>
<li>cells are editable on clicks</li>
<li>save data in localstorage</li>
<li>can calculate numeric value similar to excel eg: =A1+A2-A4 </li>
</ul>
</div>
<button type="button" onclick="addRow()">Add Row</button>
<button type="button" onclick="deleteRow()">Delete Row</button>
<table></table>
<script src="main.js"></script>
</body>
</html>