-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (48 loc) · 2.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Flappy Bird</title>
<!-- Meta Tags for SEO -->
<meta name="description" content="Play Flappy Bird, the classic and addictive arcade game. Guide the bird through obstacles and achieve the highest score!">
<meta name="keywords" content="Flappy Bird, online game, arcade game, play Flappy Bird, Flappy Bird online, classic game, addictive game">
<meta name="author" content="PlayCanvas">
<link rel="apple-touch-icon" href="/icons/180.jpg" sizes="180x180">
<link rel="mask-icon" href="/icons/180.jpg" color="#FFFFFF">
<meta name="theme-color" content="aliceblue">
<link rel="icon" href="/icons/favicon.ico">
<!-- Open Graph Meta Tags for Social Media -->
<meta property="og:title" content="Flappy Bird - Play the Classic Game Online">
<meta property="og:description" content="Play Flappy Bird, the classic and addictive arcade game. Guide the bird through obstacles and achieve the highest score!">
<!-- <meta property="og:image" content="URL_to_your_image.jpg"> Replace with your actual image URL -->
<!-- <meta property="og:url" content="tbd.com"> Replace with your actual site URL -->
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Flappy Bird - Play the Classic Game Online">
<meta name="twitter:description" content="Play Flappy Bird, the classic and addictive arcade game. Guide the bird through obstacles and achieve the highest score!">
<!-- <meta name="twitter:image" content="https://example.com/image.jpg"> Replace with your actual image URL -->
<meta name="twitter:site" content="@playcanvas"> <!-- Replace with your actual Twitter handle if available -->
<!-- CSS Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap" rel="stylesheet">
<script type="importmap">
{
"imports": {
"playcanvas": "%VITE_PLAYCANVAS%"
}
}
</script>
</head>
<body>
<div id="app">
<canvas id="canvas"></canvas>
<footer>
<span>Made with <a href="https://playcanvas.com" target="_blank">PlayCanvas</a></span>
</footer>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>