-
Notifications
You must be signed in to change notification settings - Fork 0
/
statsheet-human.html
50 lines (49 loc) · 1.55 KB
/
statsheet-human.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
39
40
41
42
43
44
45
46
47
48
49
50
<table>
<tr>
<td class = "add" id = "str-add">
<input type = "radio" name = "select" id = "radio-str" value = "strength"></input>
</td>
<td class = "label">Strength</td>
<td class = "stat" id = "str"></td>
<td class = "mod" id = "str-mod"></td>
</tr>
<tr>
<td class = "add" id = "con-add">
<input type = "radio" name = "select" id = "radio-con" value = "constitution"></input>
</td>
<td class = "label">Constitution</td>
<td class = "stat" id = "con"></td>
<td class = "mod" id = "con-mod"></td>
</tr>
<tr>
<td class = "add" id = "dex-add">
<input type = "radio" name = "select" id = "radio-dex" value = "dexterity"></input>
</td>
<td class = "label">Dexterity</td>
<td class = "stat" id = "dex"></td>
<td class = "mod" id = "dex-mod"></td>
</tr>
<tr>
<td class = "add" id = "int-add">
<input type = "radio" name = "select" id = "radio-int" value = "intelligence"></input>
</td>
<td class = "label">Intelligence</td>
<td class = "stat" id = "int"></td>
<td class = "mod" id = "int-mod"></td>
</tr>
<tr>
<td class = "add" id = "wis-add">
<input type = "radio" name = "select" id = "radio-wis" value = "wisdom"></input>
</td>
<td class = "label">Wisdom</td>
<td class = "stat" id = "wis"></td>
<td class = "mod" id = "wis-mod"></td>
</tr>
<tr>
<td class = "add" id = "cha-add">
<input type = "radio" name = "select" id = "radio-cha" value = "charisma"></input>
</td>
<td class = "label">Charisma</td>
<td class = "stat" id = "cha"></td>
<td class = "mod" id = "cha-mod"></td>
</tr>