-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
51 lines (43 loc) · 2.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Farm Siege</title>
<meta
name="description"
content="Farm Siege is an engaging browser game that challenges players to grow and defend their crops under pressure, while striving to achieve the highest score possible."
/>
<link rel="shortcut icon" href="./favicon.ico" />
<link rel="icon" type="image/png" href="./favicon.png" />
<meta property="og:url" content="https://farmsiege.wsky.dev" />
<meta property="og:title" content="Farm Siege" />
<meta
property="og:description"
content="Farm Siege is an engaging browser game that challenges players to grow and defend their crops under pressure, while striving to achieve the highest score possible."
/>
<meta property="og:image" content="https://farmsiege.wsky.dev/og.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="Farm Siege" />
<meta
property="twitter:description"
content="Farm Siege is an engaging browser game that challenges players to grow and defend their crops under pressure, while striving to achieve the highest score possible."
/>
<meta property="twitter:image" content="https://farmsiege.wsky.dev/og.png" />
<script type="module" src="/src/main.ts" defer></script>
<link rel="stylesheet" href="/src/styles.css" />
<!-- Analytics -->
<script defer data-domain="farmsiege.wsky.dev" src="https://insights.wsky.dev/js/script.outbound-links.js"></script>
</head>
<body>
<div class="container">
<canvas id="canvas" style="width: 100%; height: auto"></canvas>
<noscript>
<p>Not loading?</p>
<p>JavaScript is required to play Farm Siege</p>
</noscript>
<footer>Handcrafted with ❤️ by <a href="https://wotschofsky.com" target="_blank">Felix Wotschofsky</a></footer>
</div>
</body>
</html>