-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 746 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iDragon - JavaScript Game</title>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div class="gameContainer">
<div class="gameOver">Welcome to iDragon Adventures</div>
<!-- <div class="gameOver">Welcome to iDragon - Created by Harry</div> -->
<div class="dino"></div>
<div id="scoreCont">Your Score: 0</div>
<div class="obstacle obstacleAni"></div>
</div>
</body>
</html>