-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
31 lines (30 loc) · 909 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
<!DOCTYPE html>
<!--<html manifest="editor.appcache">-->
<head>
<title>BrowserSynth</title>
<link rel="stylesheet" href="js/codemirror/codemirror.css">
<link rel="stylesheet" href="css/styles.css">
<script src="js/codemirror/codemirror.js"></script>
<script src="js/codemirror/mode/xml.js"></script>
<script src="js/codemirror/mode/javascript.js"></script>
<script src="js/codemirror/mode/css.js"></script>
<script src="js/codemirror/mode/htmlmixed.js"></script>
<script src="js/lib/rawinflate.js"></script>
<script src="js/lib/rawdeflate.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<style>
#editor .CodeMirror {
opacity: .95;
}
</style>
</head>
<body>
<div id="preview"></div>
<div id="editor"></div>
<div id="toolbar"></div>
<div id="clickbar"></div>
<div id="popup"></div>
<div id="container"></div>
<script src="js/main.js"></script>
</body>
</html>