forked from joskid/continuum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 870 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Continuum - An ES6 Virtual Machine Built in JavaScript</title>
<link rel="stylesheet" href="debugger/style.css">
</head>
<body>
<div id="masthead">
<h1>Continuum</h1>
<h3>An ES6 Virtual Machine Built in JavaScript</h3>
</div>
<a id="github" href="https://github.com/Benvie/continuum" target="_blank">View on Github</a>
<script src="continuum.js"></script>
<script src="third_party/CodeMirror/lib/codemirror.js"></script>
<script src="third_party/CodeMirror/mode/javascript/javascript.js"></script>
<script src="debugger/component.js"></script>
<script src="debugger/renderers.js"></script>
<script src="debugger/panels.js"></script>
<script src="debugger/xhr.js"></script>
<script src="debugger/debugger.js"></script>
</body>
</html>