forked from Aidenkrz/MvMBingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SS14 Bingo Gen</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles.css">
<script src = "./javascript/jquery-3.6.1.min.js"></script>
<script src = "./javascript/html2canvas.js"></script>
<script src="./javascript/bingo.js"></script>
</head>
<body>
<p>SS14 Bingo Generator</p>
<p2>This sites curently a WIP :) </p2>
<br>
<label>Select type:</label>
<select id="cardTourSel" onchange="bingoCreate()">
</select>
<br>
<label>Select bingo card size:</label>
<select id="cardSizeSel" onchange="bingoCreate()">
<option value='3'>3x3</option>
<option value='5'>5x5</option>
</select>
<br>
<button onclick="bingoCreate()">Generate Card!</button>
<button onclick="saveBingo()">Save Card!</button>
<div id="bingoCard"></div>
</body>
</html>