-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (50 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>Rocket Doge</title>
<!-- X-icon -->
<link rel="icon" href="./assets/img/banner.webp" type="image/x-icon">
<!-- Meta tags -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="keywords" content="Developer, designer, website, game , Rocket Doge , new game , doge , Naman, Saini, NamanSaini, Naman Saini, ProgrammerXD, programmerxd, programmarxd, Programmer XD, portfolio" />
<meta name="author" content="ProgrammerXD / Naman Saini" />
<meta name="title" content="Rocket Doge ~ Game" />
<meta name="description" content="Enjoy the intergallactic travel in Rocket Doge." />
<meta property="og:image" content="./assets/img/banner.webp" />
<meta property="og:title" content="Rocket Doge ~ Game" />
<meta property="og:url" content="https://realpxd.github.io/fly-to-moon" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Enjoy the intergallactic travel in Rocket Doge." />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="https://realpxd.github.io/fly-to-moon" />
<meta name="twitter:title" content="Rocket Doge ~ Game" />
<meta name="twitter:description" content="Enjoy the intergallactic travel in Rocket Doge." />
<meta name="twitter:url" content="https://realpxd.github.io/fly-to-moon" />
<meta name="twitter:image" content="./assets/img/banner.webp" />
<meta id="themeH" name="theme-color" content="purple" />
<meta name = "revised" content = "ProgrammerXD, 3/15/2023" />
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="loader">
<img src="./assets/img/obs.png">
<progress id="progressBar" value="10" min="0" max="100"></progress>
</div>
<div class="desk-controls-left">
<h1>Play with</h1>
<div>
<img src="./assets/img/keyup.png" alt="up key">
<img src="./assets/img/spacebar.png" alt="spacebar">
</div>
</div>
<div class="desk-controls-right">
<h1>Start the Game</h1>
<img src="./assets/img/enter.png" alt="enter key">
</div>
<button id="musicBtn">music</button>
<canvas id="canvas" width="400" height="800">
Your browser does not support the HTML5 canvas tag.
</canvas>
<script src="./script.js" defer></script>
</body>
</html>