mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-08-11 05:09:12 +00:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Random -->
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
|
|
<!-- Metadata -->
|
|
<title>Pokemon JS</title>
|
|
<meta name="description" content="A fan-made Pokemon game in JavaScript" />
|
|
|
|
<!-- Socials -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content="Pokemon JS" />
|
|
<meta name="twitter:image" content="https://gameboy-52d09.web.app/og-image.png" />
|
|
<meta property="og:image" content="https://gameboy-52d09.web.app/og-image.png" />
|
|
|
|
<!-- Icons -->
|
|
<script src="https://kit.fontawesome.com/96cd3663fe.js" crossorigin="anonymous"></script>
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="./styles/css-pokemon-gameboy.css" />
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|