-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheditor.html
35 lines (31 loc) · 999 Bytes
/
editor.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Equal Split Screen with Fixed Navbar</title>
<link rel="stylesheet" href="editor.css">
</head>
<body>
<!-- Fixed navbar with centered title and left-aligned buttons -->
<div id="navbar">
<button id="run-button">Run</button>
<button>About</button>
<button>Contact</button>
<div style="position: absolute; left: 50%; transform: translateX(-50%);">
live html editor
</div>
</div>
<!-- Flexbox container for the split-screen -->
<div id="split-screen">
<!-- Left panel with a text area -->
<div class="left-panel">
<textarea id="input-textarea" placeholder="Enter your text here..."></textarea>
</div>
<!-- Right panel with an iframe -->
<div class="right-panel">
<iframe id="output-iframe"></iframe>
</div>
</div>
<script src="editor.js"></script>
</body>
</html>