-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.03 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
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML Previewer</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="input-area">
<div>
<label for="htmlInput">HTML:</label>
<textarea id="htmlInput"></textarea>
</div>
<div>
<label for="cssInput">CSS:</label>
<textarea id="cssInput"></textarea>
</div>
<div>
<label for="jsInput">JavaScript:</label>
<textarea id="jsInput"></textarea>
</div>
</div>
<div class="button-container">
<button id="openCodeFilesButton">Open Code Files</button>
</div>
<div class="divider"></div>
<div class="button-container">
<button id="previewButton">Preview</button>
</div>
<div class="preview-area">
<iframe id="previewArea" title="Preview Area"></iframe>
</div>
</div>
<script src="renderer.js"></script>
</body>
</html>