-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
34 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
<!DOCTYPE html>
<html>
<head>
<title>Mesh: A Sleek Code Editor</title>
<link rel="stylesheet" href="./css/reset.css" type="text/css">
<link rel="stylesheet" href="./css/style.css" type="text/css">
<script src="https://cdn.firebase.com/v0/firebase.js"></script>
<script src="./js/vendor/codemirror.js"></script>
<script src="./js/vendor/css.js"></script>
<script src="./js/vendor/htmlmixed.js"></script>
<script src="./js/vendor/xml.js"></script>
<script src="./js/vendor/javascript.js"></script>
<script src="./js/vendor/jquery.js"></script>
<script src="./js/vendor/jquery-ui.js"></script>
<script src="./js/app.js"></script>
</head>
<body class="cm-s-default">
<div id="controls">
<!-- <a class="button together button-on" onclick="TogetherJS(this); return false;" title="toggle collaboration"></a> -->
<a href="#" class="button lights" title="toggle the lights"></a>
</div>
<textarea id="html"></textarea>
<textarea id="css"></textarea>
<textarea id="js"></textarea>
<div id="frame" class="cm-s-default frame">
<iframe id="preview"></iframe>
</div>
</body>
</html>