-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (68 loc) · 2.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<!-- Basic Meta -->
<title>Home | The Coding Game</title>
<meta name="title" content="The Coding Game" />
<meta name="description" content="Learn to code using this fun and silly game! Play it twice a day and within a few weeks, you'll already be mastering JavaScript." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://game.xcore.tk" />
<meta property="og:title" content="The Coding Game" />
<meta property="og:description" content="Learn to code using this fun and silly game! Play it twice a day and within a few weeks, you'll already be mastering JavaScript." />
<meta property="og:image" content="https://game.xcore.tk/TheCodingGame.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://game.xcore.tk" />
<meta property="twitter:title" content="The Coding Game" />
<meta property="twitter:description" content="Learn to code using this fun and silly game! Play it twice a day and within a few weeks, you'll already be mastering JavaScript." />
<meta property="twitter:image" content="https://game.xcore.tk/TheCodingGame.png" />
<!-- Other Stuff -->
<link href="style.css" rel="stylesheet" />
</html>
<body>
<div class='navbar'>
<div class='logo'>
<span
class='logo firstInNav'
id='piece1'>The Coding Game</span>
<span
class='logo'
id='piece2'></></span>
<span
class='logo'
id='piece3'>| </span>
<a
href="javascript:void(0)"
onclick="c()">
Credits</a>
<span id="dv">/</span>
<a
href="javascript:void(0)"
onclick="e()">
Home</a>
</div>
</div>
<div class="content">
<div class="levelCard">
<h2
class="logo"
id="piece1">
The Coding Game
</h2>
<h2
class="logo"
id="piece2">
</>
</h2><br><br>
<a href="level1.html?page=1" id="start"><button>START</button></a><br>
<span>Your level: <code id="lvl"></code></span>
<div id="scriptOutput" hidden>
This is here to prevent an error from being console.log-ed. This is hidden.
</div>
</div>
</div>
<div class="floatingAlert">
PUBLIC PREVIEW
</div>
<script src='script.js'></script>
</body>