-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
119 lines (109 loc) · 4.15 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- HTML Meta Tags -->
<title>Trick or Treat 2.0</title>
<meta
name="description"
content="Play and enjoy scoring to save the jack-o'-lantern!!!
HTML5 game for Ironhack first module project."
/>
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Trick or Treat 2.0" />
<meta
itemprop="description"
content="Play and enjoy scoring to save the jack-o'-lantern!!!
HTML5 game for Ironhack first module project."
/>
<meta itemprop="image" content="./assets/img/meta.png" />
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://teresaromero.github.io/trick-or-treat-game"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Trick or Treat 2.0" />
<meta
property="og:description"
content="Play and enjoy scoring to save the jack-o'-lantern!!!
HTML5 game for Ironhack first module project."
/>
<meta property="og:image" content="./assets/img/meta.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Trick or Treat 2.0" />
<meta
name="twitter:description"
content="Play and enjoy scoring to save the jack-o'-lantern!!!
HTML5 game for Ironhack first module project."
/>
<meta name="twitter:image" content="./assets/img/meta.png" />
<!-- Meta Tags Generated via http://heymeta.com -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="./css/fire.css" />
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="d-flex h-100 text-center text-white bg-dark">
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<div id="main-vp" class="d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<h1 class="float-md-center mb-0">Trick or Treat ? 🎃</h1>
<nav
class="nav nav-masthead justify-content-center float-md-right"
></nav>
</div>
</header>
<main class="justify-content-center align-items-center bg-dark"></main>
<footer class="mt-auto text-white-50">
<p>
Coded with <span class="pr-2">❤️</span>by
<a
href="https://bit.ly/teresaromero"
target="_blank"
rel="noopener noreferrer"
>me!</a
>
</p>
</footer>
</div>
<script src="./js/canvas.js" async defer></script>
<script src="./js/game.js" async defer></script>
<script src="./js/item.js" async defer></script>
<script src="./js/utils.js" async defer></script>
<script src="./js/index.js" async defer></script>
<script>
feather.replace();
</script>
<!-- JavaScript and dependencies -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous"
></script>
</body>
</html>