-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.08 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
<link rel="stylesheet" type="text/css" href="style.css">
<script src="js.js"></script>
<table id="OutputResults" border="1">
<tr>
<th scope="col">Reopens</th>
<th scope="col">HP</th>
<th scope="col">CID</th>
<th scope="col">Partner Webform</th>
</tr>
<tr>
<td>
<button onclick="AddManualTally('Pages')">Add</button>
<button onclick="RemoveManualTally('Pages')">Remove</button>
</td>
<td>
<button onclick="AddManualTally('News')">Add</button>
<button onclick="RemoveManualTally('News')">Remove</button>
</td>
<td>
<button onclick="AddManualTally('Events')">Add</button>
<button onclick="RemoveManualTally('Events')">Remove</button>
</td>
<td>
<button onclick="AddManualTally('Publications')">Add</button>
<button onclick="RemoveManualTally('Publications')">Remove</button>
</td>
</tr>
<tr>
<td id="txtPages" data-tallykey="Pages">0</td>
<td id="txtNews" data-tallykey="News">0</td>
<td id="txtEvents" data-tallykey="Events">0</td>
<td id="txtPublications" data-tallykey="Publications">0</td>
</tr>
</table>