Spaces:
Running
Running
SplaatKlasky
commited on
Commit
•
f561eef
1
Parent(s):
b345095
Update index.html
Browse files- index.html +21 -17
index.html
CHANGED
@@ -1,19 +1,23 @@
|
|
1 |
<!doctype html>
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
19 |
</html>
|
|
|
1 |
<!doctype html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<link type="image/ico" rel="icon" href="https://flappybird.ee/wp-content/uploads/fbrfg/apple-touch-icon.png"/>
|
5 |
+
<meta charset="UTF-8">
|
6 |
+
<meta name="robots" content="noindex,nofollow" />
|
7 |
+
<title>Flappy Bird</title>
|
8 |
+
<style>iframe{width: 100vw; height: 100vh;}body{margin:0}</style>
|
9 |
+
<body>
|
10 |
+
<iframe title="Game Container" id="iframe-lazyload-src" allow="autoplay; fullscreen; picture-in-picture; cross-origin-isolated" src="https://flappybird.ee/game/" width="100%" height="100%" scrolling="yes" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe>
|
11 |
+
|
12 |
+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NP2SJRD4RX"></script>
|
13 |
+
<script>
|
14 |
+
window.dataLayer = window.dataLayer || [];
|
15 |
+
function gtag(){dataLayer.push(arguments);}
|
16 |
+
gtag('js', new Date());
|
17 |
+
|
18 |
+
gtag('config', 'G-NP2SJRD4RX');
|
19 |
+
</script>
|
20 |
+
|
21 |
+
|
22 |
+
</body>
|
23 |
</html>
|