-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinner.html
More file actions
24 lines (21 loc) · 698 Bytes
/
inner.html
File metadata and controls
24 lines (21 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rpg Shenanigans</title>
<link rel = 'stylesheet' href = 'style.css'>
</head>
<body>
<!--Where the area is set-->
<section class="game">
</section>
<!--Scipts for the whole game so far-->
<!-- <script src = 'scripts/skill.js'></script>
<script src = 'scripts/entity.js'></script>
<script src = 'scripts/character.js'></script>
<script src = 'scripts/equipment.js'></script>
<script src = 'scripts/enemy.js'></script> -->
<script type = "module" src = 'src/core/main.js'></script>
</body>
</html>