-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<title>Scooby-Doo in Freaky Fairground</title>
<style>
.monogame {
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
}
div.monogame {
text-align: center;
}
div.monogame_border {
border: 1px solid black;
}
canvas.monogame {
border: 0px none;
background-color: black;
}
</style>
<script src="bridge.min.js" defer></script>
<script src="bridge.meta.min.js" defer></script>
<script src="MonoGame.Framework.min.js" defer></script>
<script src="MonoGame.Framework.meta.min.js" defer></script>
<script src="ScoobyTV.min.js" defer></script>
<script src="ScoobyTV.meta.min.js" defer></script>
</head>
<body>
<div class="monogame" id="status">Loading...</div>
<div class="monogame_border">
<canvas class="monogame" id="monogamecanvas"></canvas>
</div>
</body>
</html>