-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.16 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/dom-to-image/2.6.0/dom-to-image.min.js"></script>
</head>
<body id="loading">
<main style="display: none;">
<div class="title">TOP - 200 | Min. Elo: Platinum IV</div>
<div id="tier-container">
<div class="tier"><input type="text" placeholder="S" maxlength="2"></div>
<div class="tier"><input type="text" placeholder="A" maxlength="2"></div>
<div class="tier"><input type="text" placeholder="B" maxlength="2"></div>
<div class="tier"><input type="text" placeholder="C" maxlength="2"></div>
<div class="tier"><input type="text" placeholder="D" maxlength="2"></div>
<div class="tier"><input type="text" placeholder="E" maxlength="2"></div>
</div>
<button id="download" disabled>Download Image</button>
<div id="character-pool"></div>
</main>
<script type="module" src="./assets/js/index.js"></script>
</body>
</html>