-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
18 lines (17 loc) · 857 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<title>Who's That Pokémon?</title>
<meta description="HTML5 game where you guess the Pokémon from the silhouette!" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="src/index.css" />
<meta name="viewport" content="width=device-width, initial-scale=1, interactive-widget=resizes-content">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="src/index.tsx" type="module"></script>
</head>
<body>
<noscript><div id="noJavascript" class="upperBox warning">Hey there! You need Javascript enabled for this game to work. It's used to make the Pokemon silhouettes and to check your answers. Turn it on if you want to play!</div></noscript>
<div id="stage"></div>
</body>
</html>