-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Carryover Calculator</title>
<meta property="og:title" content="Carryover Calculator" />
<meta property="og:type" content="website" />
<meta property="og:image" content="./comic_l_121401_01.jpg" />
<meta
property="og:description"
content="A carryover time calculation tool."
/>
<link rel="icon" href="./src/img/favicon-32x32.png" type="image/png" sizes="32x32" />
<link rel="icon" href="./src/img/favicon.png" type="image/png" sizes="128x128" />
<script src="./src/index.ts" type="module"></script>
<link rel="stylesheet" href="./src/style/index.css" />
</head>
<body>
<form name="co-calculator" id="co-calculator__form">
<div id="co-calculator" class="fancy-container">
<div class="row">
<div>Name:</div>
<input type="text" name="name" id="co-calculator__name" placeholder="To differentiate multiple tabs" />
</div>
<div class="row">
<div>Boss HP:</div>
<input type="text" name="hp" id="co-calculator__hp" placeholder="Use `m` suffix for millions" />
</div>
<div class="row">
<div>Leading hits:</div>
<input
type="text"
name="leading-hits"
id="co-calculator__leading-hits"
placeholder="Separate multiple values with spaces"
/>
</div>
<div class="row">
<div>Last Hit:</div>
<input
type="text"
name="last-hit"
id="co-calculator__last-hit"
/>
</div>
<input
type="submit"
value="Calculate"
id="co-calculator__calculate"
class="calculate-button"
/>
<div id="co-calculator__result"></div>
</div>
</form>
<footer>v1.0.0</footer>
</body>
</html>