-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta name="Elbows Game" content="Fighting game by DevElbowGrease">
<meta name="keywords" content="Game, Fighting, Co-op">
<title>Fighting game by DevElbowGrease</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main id="game">
<section id="game-info">
<div id="player-health"></div>
<div id="timer">
<span id="time"></span>
</div>
<div id="enemy-health"></div>
</section>
<div id="final-text"></div>
<canvas></canvas>
</main>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/classes.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>