-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (52 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
62 lines (52 loc) · 1.96 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Editor</title>
<!-- Core -->
<script defer src="codemirror/lib/codemirror.js"></script>
<link rel="stylesheet" href="codemirror/lib/codemirror.css">
<!-- Modules -->
<script defer src="codemirror/mode/xml/xml.js"></script>
<script defer src="codemirror/mode/css/css.js"></script>
<script defer src="codemirror/mode/javascript/javascript.js"></script>
<script defer src="codemirror/mode/htmlmixed/htmlmixed.js"></script>
<!-- Addon -->
<script defer src="codemirror/addon/display/placeholder.js"></script>
<script defer src="codemirror/addon/edit/closebrackets.js"></script>
<script defer src="codemirror/addon/edit/closetag.js"></script>
<!-- <script src="codemirror/addon/comment/"></script> -->
<!-- Themes -->
<link rel="stylesheet" href="codemirror/theme/monokai.css">
<link rel="stylesheet" href="codemirror/theme/dracula.css">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<script src="sw_cached_pages.js" defer></script>
</head>
<body>
<!-- Top Pane -->
<div class="top-pane">
<div class="code-editors">
<div class="editor html-editor">
<h2 class="editor-title">HTML</h2>
<textarea name="html-editor" id="html-editor" placeholder="Html Here"></textarea>
</div>
<div class="editor css-editor">
<h2 class="editor-title">CSS</h2>
<textarea name="css-editor" id="css-editor" placeholder="CSS Here"></textarea>
</div>
<div class="editor js-editor">
<h2 class="editor-title">JavaScript</h2>
<textarea name="js-edutor" id="js-editor" placeholder="JavaScript Here"></textarea>
</div>
</div>
</div>
<!-- Bottom Pane -->
<div class="bottom-pane">
<iframe sandbox="allow-popups allow-same-origin allow-scripts allow-forms allow-modals"
id="iframe-ele"></iframe>
</div>
</body>
</html>