-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
38 lines (36 loc) · 863 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
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>HyperFormula Custom Functions</title>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.min.css"
/>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/milligram@1.4.1/dist/milligram.min.css"
/>
<link rel="stylesheet" href="./src/styles.css" />
<meta charset="UTF-8" />
</head>
<body>
<div class="example">
<button id="run" class="button run">
Run calculations
</button>
<button id="reset" class="button button-outline reset">
Reset
</button>
<table>
<thead>
<tr>
<th>A</th>
<th>B</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>