forked from james-oldfield/react-rpg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 920 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>React Webpack Template Title</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
</head>
<body>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", sans-serif;
}
.demo {
width: 80%;
margin: auto;
position: relative;
}
.demo h1 a{
font-size: 50px;
text-decoration: none;
color: tomato;
}
.demo h1 a:hover {
opacity: 0.5;
}
</style>
<div id="app">APPLICATION CONTENT</div>
<script>__REACT_DEVTOOLS_GLOBAL_HOOK__ = parent.__REACT_DEVTOOLS_GLOBAL_HOOK__</script>
<script type="text/javascript" src="demo/app.min.js"></script>
</body>
</html>