-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Viewport -->
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no" />
<!-- Title -->
<title>Space Shooter</title>
<!-- Style -->
<link rel="stylesheet" href="./assets/styles/style.css" />
<!-- Font -->
<link rel="preload" href="./assets/fonts/Devans.woff" as="font" type="font/woff" crossorigin />
<!-- Icon -->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/images/logo/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/logo/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./assets/images/logo/favicon-16x16.png" />
<link rel="manifest" href="./assets/images/logo/site.webmanifest">
<link rel="mask-icon" href="./assets/images/logo/safari-pinned-tab.svg" color="#073349">
<link rel="shortcut icon" href="./assets/images/logo/favicon.ico" />
<meta name="msapplication-TileColor" content="#073349" />
<meta name="msapplication-config" content="./assets/images/logo/browserconfig.xml" />
<meta name="theme-color" content="#073349" />
<!-- Meta -->
<meta name="title" content="Space Shooter" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Space Shooter" />
<meta name="application-name" content="Space Shooter" />
<meta name="description" content="Space Shooter is game where you fight for your survival against antigalactic enemies!" />
<!-- OpenGraph -->
<meta property="og:site_name" content="Space Shooter" />
<meta property="og:title" content="Space Shooter" />
<meta property="og:description" content="Space Shooter is game where you fight for your survival against antigalactic enemies!" />
<meta property="og:type" content="website" />
<meta property="og:image" content="./assets/images/logo/192x192.png" />
<meta property="og:image:width" content="192" />
<meta property="og:image:height" content="192" />
<meta itemprop="image" content="./assets/images/logo/180x180.png" />
<!-- Script -->
<script src="./src/lib/pixi.min.js" defer></script>
<script src="./src/lib/pixi-sound.js" defer></script>
<script type="module" src="./src/app.js"></script>
</head>
<body>
</body>
</html>