-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (22 loc) · 824 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Battle of the Elements</title>
<meta name="viewport" content="width=device-width, initial-scale=1" id="viewport">
<script>
// we're need this for graceful handling for our UI
if (screen.width <= 690) {
var mvp = document.getElementById('viewport');
mvp.setAttribute('content','width=690');
}
</script>
<link rel="stylesheet" type="text/css" media="screen" href="https://cdn.rawgit.com/resir014/Clear-Sans-Webfont/v1.0.1/css/clear-sans.css">
<link rel="stylesheet" type="text/css" href="static/main.css">
</head>
<body>
<div id="root" style="height:100%;width:100%;"></div>
<script src="static/vendor.bundle.js"></script>
<script src="static/bundle.js"></script>
</body>
</html>