-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 940 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title id="site-title">KHS Bingo</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="header">
<h1 id="title">KHS Bingo</h1>
</div>
<div class ="select" id ="source-select">
<select name="Source" id="source" onchange="changeValues(this.selectedIndex)">
<option value="khs" id="khs-option" selected>KHS</option>
<option value="glaeser">Gläser</option>
</select>
</div>
<div class="containers">
<div class="bingo-container" id="bingo-container"></div>
<div class="card-container" id="card-container"></div>
</div>
<div class="footer">
<button class="bingo-button" id="shuffle-button">Shuffle</button>
<button class="bingo-button" id="action-button">Start</button>
<button class="bingo-button" id="reset-button">Reset</button>
</div>
</div>
<script src="js/BingoGrid.js"></script>
</body>
</html>