-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (30 loc) · 716 Bytes
/
index.html
File metadata and controls
39 lines (30 loc) · 716 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
27
28
29
30
31
32
33
34
35
36
37
38
39
<!--
RPG Stat Calculator, using stats squared method
Copyright Miriam Sexton
Original date unknown, certainly pre 2009
Git repo (c) 2014
-->
<html>
<head>
<title>Stats Squared</title>
<link rel="stylesheet" href="statssq.css" type="text/css" />
<script type="text/javascript" src="statssq.js" ></script>
</head>
<body>
<p>
<form name="stats" id="id_stats">
<table>
<tr>
<td class="headerOne">
<label for="id_max_cost">Enter Number of Points: </label>
<input type="text" size="5" id="id_max_cost" /></td>
</tr>
<tr>
<td><p id="inputArea"><button onclick="WriteBody('inputArea','clickme')" id="clickme">Set Number of Points</button></p></td>
</tr>
</table>
</form>
</p>
<p id="g"></p>
</body>
</html>