-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.25 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
36
<!DOCTYPE html>
<html>
<head>
<title>KartKalc</title>
<meta charset="utf-8" lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/index.css" rel="stylesheet" type="text/css">
<!-- <script src="js/kalc.js"></script> -->
<script src="js/index.js"></script>
</head>
<body>
<h1>Welcome to KartKalc!</h1>
<h2>I made this tool so it would be possible to kalculate what places your team would need in order to take the lead
in a race.</h2>
<h3>Click or tap on the "Check for places" text in order to see what places your team needs to take the lead.</h3>
<form>
<p id="yourPointsText"><input type="number" id="yourPoints"> Your Team Points</p>
</form>
<form>
<p id="thierPointsText"><input type="number" id="theirPoints"> Their Team Points</p>
</form>
<p onclick="main()" id="check">Check for places</p>
<p id="places">The possible places are: </p>
</body>
<footer>
<h4>Credits:</h4>
<h5>Creator: <a href="https://github.com/MADMAN-Modding" target="_blank">MADMAN-Modding</a></h5>
<h5><a href="https://github.com/MADMAN-Modding/MarioKart-Calculator" target="_blank">Github Repo</a></h5>
</footer>
</html>