-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (23 loc) · 768 Bytes
/
index.html
File metadata and controls
29 lines (23 loc) · 768 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
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<title>Code Editor</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header"> <h3>HTML Code Editor<h3>
</div>
<div class="code-area"><br>
<textarea id="htmlCode" placeholder="HTML Code" oninput="showPreview()"></textarea>
<textarea id="cssCode" placeholder="CSS Code" oninput="showPreview()"></textarea>
<textarea id="jsCode" placeholder="JavaScript Code" oninput="showPreview()"></textarea>
</div>
<div class="preview-area"><br>
<iframe id="preview-window"></iframe>
</div>
<div class="footer">
<h2>Created by Aadil Siddiquee </h2>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>