-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (49 loc) · 2.15 KB
/
Copy pathindex.html
File metadata and controls
55 lines (49 loc) · 2.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta property="og:site_name" content="Romain Coupey" />
<meta property="og:title" content="Code Connection" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Code Connection - A fun developer-themed game." />
<meta property="og:image" content="./assets/code-connection.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1280" />
<meta property="og:image:height" content="800" />
<meta property="og:url" content="https://romaincoupey.com/" />
<meta property="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Code Connection" />
<meta name="twitter:image" content="./assets/code-connection.png" />
<meta name="twitter:url" content="https://romaincoupey.com/" />
<meta name="twitter:card" content="summary" />
<meta name="description" content="Code Connection - A fun developer-themed game." />
<link rel="icon" href="./assets/favicon.ico" type="image/ico" />
<link rel="stylesheet" href="./css/style.css" />
<title>Code Connection - Developer Platform Game</title>
</head>
<body>
<noscript>
<div class="noscript">
<p>You need to enable JavaScript to run this website.</p>
</div>
</noscript>
<div class="container">
<h1 id="game-title">Code Connection</h1>
<p id="best-score" title="Your best score">
🏆 High Score: <span id="record">0</span>
</p>
<p id="current-score" title="Your current score">
⭐ Current: <span id="score">0</span>
</p>
<canvas id="game" width="375" height="375"></canvas>
<p id="introduction">Tap to build a connection<br>Release to deploy</p>
<p id="perfect">CLEAN CODE! x2 POINTS</p>
<p id="restart">DEBUG & RESTART</p>
</div>
<!-- Load character reference first as it's used by other modules -->
<script src="./js/character-reference.js"></script>
<!-- Load the game modules -->
<script type="module" src="./js/main.js"></script>
</body>
</html>