-
Notifications
You must be signed in to change notification settings - Fork 164
/
index.html
41 lines (31 loc) · 997 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
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Logo of the website -->
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<!-- Title of the game -->
<title>Guess The Random Shape</title>
<!-- Stylesheet -->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- Main heading -->
<h1 class="heading">Guess The Random Shape</h1>
<!-- Game container -->
<div class="container">
<!-- Game board -->
<canvas id="myCanvas" width="500" height="500"></canvas>
<!-- Options -->
<div id="options"></div>
</div>
<h2 class="creator">Created By <a href="https://github.com/Avdhesh-Varshney" src="Github Account">Avdhesh
Varshney</a> 👋</h2>
<!-- Scoreboard -->
<p id="score">Score : <span id="scoreValue">0</span></p>
<p id="lifes">Lifes : <span id="lifesValue">5</span></p>
<!-- Javascript file -->
<script src="./script.js"></script>
</body>
</html>