-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.06 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<title>Runescape XP Skill calc</title>
</head>
<body
class="flex flex-col w-full p-5 sm:p-20 pt-20 mx-auto text-center justify-center"
>
<div class="flex flex-col items-center">
<h3 class="flex text-2xl font-normal">Runescape</h3>
<h1 class="flex text-4xl mb-4">Simple XP Calculator</h1>
<p class="w-80">
Use this calculator to figure out how much XP you need to reach your
goal.
</p>
</div>
<div class="flex flex-col align-middle justify-center items-center">
<div
class="w-screen mt-3 flex flex-row justify-center gap-2 items-center"
>
<div class="scale-150 flex">👉</div>
<div class="font-bold w-28 text-end">Current Level</div>
<input
type="number"
class="w-20 rounded-md border-solid border border-gray-400 text-center"
id="currentLevel"
/>
</div>
<div class="mt-3 flex flex-row justify-center gap-2 items-center">
<div class="scale-150 flex">🎯</div>
<div class="font-bold w-28 text-end">Target Level</div>
<input
type="number"
class="w-20 rounded-md border-solid border border-gray-400 text-center"
id="targetLevel"
/>
</div>
<div class="mt-3 flex flex-row justify-center gap-2 items-center">
<div class="scale-150 flex">💪</div>
<div class="font-bold w-28 text-end">Remaining:</div>
<p
id="remainingXP"
class="w-20 rounded-md border-solid font-bold text-center"
>
123
</p>
</div>
<!-- <button
id="calculateBtn"
class="border-none bg-gray-600 p-1 px-2 text-white rounded-md mt-3"
>
Calculate
</button> -->
</div>
<script src="scripts/script.js"></script>
</body>
</html>