forked from ha-king/grace-hopper-jeopardy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (22 loc) · 897 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
<!DOCTYPE html>
<!--
Based on https://github.com/ccoenraets/react-trivia
Published under MIT license
-->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Grace Hopper Jeopardy</title>
<link rel="stylesheet" href="assets/css/styles.css" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300|Roboto:300,400" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<!-- Loading data this way as a convenience so you can easily load index.html from the local file system
(using the file:// protocol) without runnning into XHR cross origin issues. See the commented out componentDidMount
in app.js for an alternative XHR implementation -->
<script src="data.js"></script>
<script src="build/app.bundle.js"></script>
</body>
</html>