-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
38 lines (29 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap" rel="stylesheet">
<link href="https://unpkg.com/lineupjs/build/LineUpJS.css" rel="stylesheet">
<script src="https://unpkg.com/lineupjs/build/LineUpJS.js"></script>
<title>Projection Space Explorer</title>
<link rel="shortcut icon" type="image/jpg" href="textures/favicon-v2.ico" />
<style>
body {
overflow: hidden;
margin: 0px;
padding: 0px;
}
</style>
<link href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" rel="stylesheet" />
</head>
<body>
<!-- Mounting point for the application -->
<div id="mountingPoint"></div>
<!-- Bundle script -->
<script src="dist/bundle.js"></script>
</body>
</html>