-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (66 loc) · 2.27 KB
/
index.html
File metadata and controls
70 lines (66 loc) · 2.27 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
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1d">
<title>ZYTK Code Editor Alpha</title>
<meta name="description" content="Online JavaScript Compiler">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.">
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/x-icon" href="./favicon.png">
<!-- <link rel="stylesheet" href="./lib/jquery-ui.css">
<script src="./lib/jquery-1.9.1.min.js"></script>
<script src="./lib/jquery-ui.min.js"></script>
<script src="./lib/textarea-helper.js"></script> -->
</head>
<body class="body" onload="checkCookie()">
<div class="editor-menu">
<img src="./zce-logo.png">
<button class="btn btn-dark-light">Dark Mode</button>
<button class="btn btn-run">Run</button>
<button class="btn btn-ont">Open In A New Tab</button>
<button class="btn btn-save">Save Code</button>
<button class="btn btn-dev">Devlog</button>
<div class="test">
<label class="check">Console (In Testing)
<input type="checkbox" id="test">
<span class="checkmark"></span>
</label>
</div>
<div class="live">
<label class="check">Live Mode
<input type="checkbox" id="live">
<span class="checkmark"></span>
</label>
</div>
<p id="ver">v1.0.6</p>
</div>
<div class="container">
<div class="left">
<div class="tocl tocl-1">
<p class="toclp">HTML</p>
</div>
<textarea class="editor-html"></textarea>
<div class="tocl tocl-2">
<p class="toclp">CSS</p>
</div>
<textarea class="editor-css"></textarea>
<div class="tocl tocl-3">
<p class="toclp">JS</p>
</div>
<textarea class="editor-js"></textarea>
</div>
<div class="right">
<iframe frameborder="0" class="iframe" id="iframe"></iframe>
<div style="display: none;" class="tocl tocl-4">
<p class="toclp">Console</p>
</div>
<div style="display: none;" id="log-container">
<pre id="log"></pre>
</div>
</div>
</div>
<script src="./script.js"></script>
<script src="./console.js"></script>
<!-- <script src="./auto.js"></script> -->
</body>
</html>