-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (48 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Remote Bingo</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel=icon href="assets/favicon.ico">
</head>
<body>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<h1 class="page-title">Remote Bingo</h1>
<div class="top-right">
<a href="https://www.github.com/rseng/remote-bingo" target="_blank">
<i style='color:white'class="fa fa-2x fa-github"></i></a>
</div>
<div class="container">
<div class="row" style="padding-top:100px">
<div class="col-md-3">
<div id="menu">
<div id="scoreboard">
<p class="title">ROWS</p>
<p class="score"><span id="scoreRow">0</span>/5</p>
<p class="title">COLUMNS</p>
<p class="score"><span id="scoreCol">0</span>/5</p>
<p class="title">DIAGONALS</p>
<p class="score"><span id="scoreDiag">0</span>/2</p>
</div>
<button class="cardFunction" id="newCard">NEW CARD</button><br>
<button class="cardFunction" id="cleanCard">CLEAR</button>
<div style="color:white; padding-top:30px;">Choose a bingo board!</div>
<div id="selectList" style="width:200px; padding-bottom:30px"></div>
</div>
</div>
<div class="col-md-9">
<table id="card" class="board">
<!--rows and columns will be added here-->
</table>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="assets/js/remote-bingo.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/notify/0.4.2/notify.min.js"></script>
<script src="assets/js/index.js"></script>
</body>
</html>