-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (60 loc) · 2.99 KB
/
index.html
File metadata and controls
62 lines (60 loc) · 2.99 KB
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
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resin Timer</title>
<meta name="description" content="A live counter showing when will your resin in Genshin Impact be replenished.">
<meta name="keywords" content="genshin impact, resin, timer, counter, replenish, refill">
<link rel="icon" type="image/png" href="src/favicon.png"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="jumbotron text-center">
<h1>Genshin Impact</h1>
<h2>Resin Timer</h2>
</div>
<div class="container">
<div class="row">
<div class="col">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon1">Current Resin (0 - 200)</span>
</div>
<input type="number" class="form-control" id="resin" min="0" max="200">
<button class="btn btn-outline-dark" id="resin_button" onclick="calculateInit()">Calculate</button><br>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="title_top">Current Resin</div>
<div class="title_bottom" id="current_resin"></div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="title_top">Full Refill in</div>
<div class="title_bottom" id="refill_time"></div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="title_top">at</div>
<div class="title_bottom" id="refill_date"></div>
</div>
</div>
</div>
<footer class="page-footer fixed-bottom">
<div class="footer-copyright text-center py-3">JacobDevContact@protonmail.com | This website is not affiliated with miHoYo.
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>