-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (31 loc) · 793 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
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>OSRS Realtime Hit Chance Calculator</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<form id="main" onChange="run()" onLoad="run()">
Piety:
<input type="checkbox" id="piety">
<br> Slayer helm:
<input type="checkbox" id="helm">
<br> Attack level:
<br>
<input type="number" name="al" id="al" value="1">
<br> Bonus:
<br>
<input type="number" name="ab" id="ab" value="0">
<br> Defense level:<br>
<input type="number" name="dl" id="dl" value="1">
<br> Bonus:
<br>
<input type="number" name="db" id="db" value="0">
<br>
</form>
<br>
<span id="accuracy">hit chance: 50.00%</span>
<script src="js/index.js"></script>
</body>
</html>