blob: 194542c46a959c20156236add836a284521702e2 (
plain) (
blame)
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
|
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Dr. Mario</title>
<!-- Mine CSS -->
<link rel="stylesheet" href="drMarioFiles/drMario.css">
<!-- Mine JS -->
<script src="drMarioFiles/constants.js"></script>
<script src="drMarioFiles/drMario.js"></script>
</head>
<body class="bg-dark" onload="game.startNewGame()">
<div id="game" style="margin: 0 auto; position: relative;">
<div id="gameOver" style="z-index: 1;"></div>
<div id="stageCompleted" style="z-index: 1;"></div>
<div id="gameOverDoctor" style="z-index: 1;"></div>
<table id="gameBoard"></table>
<table id="throwTable"></table>
<div id="covidBlue"></div>
<div id="covidRed"></div>
<div id="covidYellow"></div>
</div>
</body>
</html>
|