-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
39 lines (36 loc) · 903 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Overwatch</title>
<meta name="mobile-web-app-capable" content="yes" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"
/>
<meta name="theme-color" content="#f60" />
<meta
http-equiv="cache-control"
content="no-cache, must-revalidate, post-check=0, pre-check=0"
/>
<meta http-equiv="expires" content="Sat, 31 Oct 2014 00:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
</head>
<body>
<div id="app"></div>
<script src="./dist/main.bundle.js" charset="utf-8"></script>
</body>
<style>
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
background-color: #1f1f1f;
}
</style>
</html>