-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (59 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- This is the favicon which appears as the icon for the browser tab when building for the web -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.svg" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta
name="viewport"
content="viewport-fit=cover, user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"
/>
<!-- Meta tags below are to customise how social media shares look if building for the web -->
<!-- Use https://metatags.io/ to easily generate new tags -->
<!-- Primary Meta Tags -->
<title>Narrat Game</title>
<meta name="title" content="Narrat Game" />
<meta name="description" content="Insert your game description here" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://your-game-url.com/" />
<meta property="og:title" content="Narrat Game" />
<meta
property="og:description"
content="Insert your game description here"
/>
<meta
property="og:image"
content="https://your-game-url.com/social-media-banner.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://your-game-url.com/" />
<meta property="twitter:title" content="Narrat Game" />
<meta
property="twitter:description"
content="Insert your game description here"
/>
<meta
property="twitter:image"
content="https://your-game-url.com/social-media-banner.png"
/>
</head>
<body>
<div id="game-holder"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="src/index.ts"></script>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>