-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheditor.html
More file actions
24 lines (22 loc) · 766 Bytes
/
editor.html
File metadata and controls
24 lines (22 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<title>CodeEdit | Editor</title>
<script src = "script.js"></script>
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<div id = "nav">CodeEdit</div>
<br>
<span id = "codearea">
<textarea id = "html" placeholder="HTML code here" oninput = "change()"></textarea>
<br><br>
<textarea id = "css" placeholder="CSS code here" oninput="change()"></textarea>
<br><br>
<textarea id = "js" placeholder="JavaScript code here" oninput="change()"></textarea>
</span>
<br><br>
<span id = "preview">
<iframe id = "preview-content"></iframe>
</span>
</body>
</html>