-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="./icons/apple-touch-icon.png">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#c91d40">
<title>Charades</title>
<style type="text/css">
html, body {
font-family: sans-serif;
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
background-color: #c91d40;
}
#loading {
text-align: center;
font-size: 35px;
color: #fff;
}
</style>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root">
<h2 id="loading">
<!--[if lte IE 8]>
You are using an unsupported version of Internet Explorer! <br />
<![endif]-->
Loading ...
</h2>
</div>
<script type="text/javascript" src="bundle.js"></script></body>
</html>