-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.41 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
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<script src="js/codemirror.js"></script>
<script src="js/xml/xml.js"></script>
<script src="js/javascript/javascript.js"></script>
<script src="js/css/css.js"></script>
<script src="js/htmlmixed/htmlmixed.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.3/underscore-min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<link rel="stylesheet" href="css/codemirror.css">
<link rel="stylesheet" href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="htmlframe frame">
<span class="section-head">HTML Body</span>
<div class="content bggrey">
<textarea id="htmlCode" class="code"></textarea>
</div>
</div>
<div class="jsframe frame">
<span class="section-head">JS</span>
<div class="content bggrey">
<textarea id="jsCode" class="code"></textarea>
</div>
</div>
<div class="cssframe frame">
<span class="section-head">CSS</span>
<div class="content bggrey">
<textarea id="cssCode" class="code"></textarea>
</div>
</div>
<div class="outputframe frame">
<span class="section-head">Output</span>
<button id="sample">Sample</button>
<button id="run">Run</button>
<iframe id="preview" class="bgwhite"></iframe>
</div>
<script src="js/app.js"></script>
</body>
</html>