-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Editor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="toolbar">
<button id="clear">Clear All</button>
<button id="reset">Reset</button>
<button id="toggle-dark-mode">Toggle Dark Mode</button>
</div>
<div class="editor-container">
<div class="input">
<label for="html">HTML</label>
<textarea id="html" onkeyup="display_result()"></textarea>
<label for="css">CSS</label>
<textarea id="css" onkeyup="display_result()"></textarea>
<label for="js">JAVASCRIPT</label>
<textarea id="js" onkeyup="display_result()"></textarea>
</div>
<div class="output">
<label for="result">Result</label>
<iframe src="" id="result"></iframe>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>