-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (48 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chinese New Year 2021 - Year of the Ox</title>
<meta name="description" content="Chinese New Year greeting card and mini video game for the Year of the Ox. Gong Xi Fa Cai!">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#cc4444">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300" rel="stylesheet">
<link href="./app/main.css" rel="stylesheet">
<script src="./app/main.js"></script>
<meta property="og:title" content="Chinese New Year 2021 - Year of the Ox">
<meta property="og:description" content="Chinese New Year greeting card and mini video game for the Year of the Ox. Gong Xi Fa Cai!">
<meta property="og:type" content="website">
<meta property="og:url" content="https://shaunanoordin.com/cny2021/">
<meta property="og:image" content="https://shaunanoordin.com/cny2021/cny2021.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="2400">
<meta property="og:image:height" content="1200">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@darke_shard">
<meta name="twitter:creator" content="@darke_shard">
<meta name="twitter:title" content="Chinese New Year 2021 - Year of the Ox">
<meta name="twitter:description" content="Chinese New Year greeting card and mini video game for the Year of the Ox. Gong Xi Fa Cai!">
<meta name="twitter:image" content="https://shaunanoordin.com/cny2021/cny2021.png">
</head>
<body>
<div id="app">
<header>
<h1>Chinese New Year 2021 - Year of the Ox</h1>
</header>
<main id="main">
<canvas id="canvas"></canvas>
<div id="menu">
<img id="banner" src="./assets/banner.png" alt="Chinese New Year 2021 (Year of the Ox) banner" />
<p>🐂 Get the ox to the goal! <br> ⏩ Launching <i>costs</i> -1 points, 💰 coins <i>give</i> +1 points.</p>
<div id="levels-list"></div>
</div>
<button id="button-home" class="ui-button"><img src="./assets/icon-menu-white.svg" alt="Home Menu"></button>
<button id="button-fullscreen" class="ui-button"><img src="./assets/icon-fullscreen-white.svg" alt="Fullscreen"></button>
<button id="button-reload" class="ui-button"><img src="./assets/icon-refresh-white.svg" alt="Reload"></button>
</main>
<footer>
<div><a href="https://shaunanoordin.com" target="_blank">shaunanoordin.com</a> / 2021
</footer>
</div><!--/#app-->
</body>
</html>