-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 934 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/phaser.min.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<title>DinoDungeons</title>
<link rel="icon" type="image/png" href="assets/favicon.png" />
</head>
<body>
<div class="splash">
<h1 class="fade-in">Welcome To DinoDungeons</h1>
</div>
<div class="title">
<h2>DinoDungeons</h2>
</div>
<script src="./src/index.js"></script>
<script src="./src/game.js"></script>
<link rel="stylesheet" href="./style.css" />
</body>
</html>