-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (64 loc) · 2.88 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
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="title" content="Video Call Bingo">
<meta name="description" content="Video Call Bingo for every Video Call ever.">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content= "Mirjam & Paul">
<link rel="stylesheet" href="style.css">
<title>💖 Integrationssplatform Bingo 💔</title>
</head>
<body onload="bingo.start()" class="background">
<div class="content">
<header>
<h1 class="h1">💖 Integrationssplatform Bingo</h1>
<h2 class="h2">The farewell edition 💔</h2>
</header>
<div class="bingo-field">
<div class="bingo-row">
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
</div>
<div class="bingo-row">
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
</div>
<div class="bingo-row">
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
</div>
<div class="bingo-row">
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
<div class="bingo-cell" data-cell-id="0"><span></span></div>
</div>
</div>
<div class="overlay overlay--hidden">
<div class="overlay-content">
<p>🎉 BINGO 🎉</p>
<img class="overlay-image" src="https://c.tenor.com/yeAht8N0DfwAAAAd/halloween-party-trick-or-treat.gif">
<button onclick="bingo.restart()" class="button">Start over</button>
</div>
</div>
<footer class="footer">
<p>
Video Call Bingo on github 🐙 <a href="https://github.com/programmiri/video-call-bingo">https://github.com/programmiri/video-call-bingo</a>
</p>
<hr />
<small>Made with lots of 💜 and maybe some 🍷</small>
</footer>
</div>
<script language="javascript" type="text/javascript" src="bingo.js"></script>
</body>
</html>