diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2023-03-26 19:06:23 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2023-03-26 19:06:23 +0200 |
| commit | 61dc7d2dba0835a26a896b88c019a1c5d027eb71 (patch) | |
| tree | 509c27ffafd7049812edbb1d759cd60ffbfebaba /drMario.html | |
| download | dottore-mario-61dc7d2dba0835a26a896b88c019a1c5d027eb71.tar.gz dottore-mario-61dc7d2dba0835a26a896b88c019a1c5d027eb71.tar.zst dottore-mario-61dc7d2dba0835a26a896b88c019a1c5d027eb71.zip | |
Working game
Diffstat (limited to 'drMario.html')
| -rw-r--r-- | drMario.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/drMario.html b/drMario.html new file mode 100644 index 0000000..57664f9 --- /dev/null +++ b/drMario.html @@ -0,0 +1,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>
\ No newline at end of file |
