forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·41 lines (30 loc) · 927 Bytes
/
index.html
File metadata and controls
executable file
·41 lines (30 loc) · 927 Bytes
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
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sandbox - CodeSandbox</title>
<link
href="https://fonts.googleapis.com/css?family=Montserrat:300|Source+Code+Pro"
rel="stylesheet">
<link rel="shortcut icon" href="//codesandbox.io/favicon.ico">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="container">
<!-- <h1 class="title">CodeSandbox</h1> -->
<div id="cubescaler">
<div id="cube">
</div>
</div>
<div id="loading">
<div id="loading-text">Initializing Sandbox Container</div>
<div id="loading-bar">
<div id="loading-progress"></div>
</div>
<div id="term"></div>
</div>
</div>
<script src="./index.js" type="application/javascript"></script>
</body>
</html>