-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 1.21 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
<!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">
<title>AR Calculator</title>
<script defer="true" src="index.js"></script>
<link rel="stylesheet" href="globals.css">
</head>
<body>
<div class="container">
<p1>Genshin AR Calculator </p1>
</br>
<Input name="myArExp" id="myArExp" class="form-control" placeholder="My AR EXP" type="text" autofocus>
</br>
<label for="currAr">Select Current AR:</label>
<select title="currAr" name="currAr" id="currAr"></select>
</br>
<label for="wantedAR">Select Wanted AR:</label>
<select title="AR" name="wantedAR" id="wantedAR"></select>
</br>
<label for="resinRefresh">Refreshed Resin Count:</label>
<select title="AR" name="resinRefresh" id="resinRefresh"></select>
</br>
</br>
<button id="Submit" type="submit">Submit</button>
</br>
</br>
</br>
<div id="totalExp"></div>
<div id="estDays"></div>
</div>
</body>
</html>