-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (27 loc) · 1.06 KB
/
Copy pathindex.html
File metadata and controls
33 lines (27 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live Code Editor</title>
<link rel="stylesheet" href="style.css">
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="left">
<label><i class='bx bxl-html5'></i>HTML</label>
<textarea id="html-code" placeholder="Write HTML here..."></textarea>
<label><i class='bx bxl-css3'></i>CSS</label>
<textarea id="css-code" placeholder="Write CSS here..."></textarea>
<label><i class='bx bxl-javascript'></i>JavaScript</label>
<textarea id="js-code" placeholder="Write JavaScript here..."></textarea>
</div>
<div class="right">
<label><i class='bx bx-play'></i>Output</label>
<iframe id="output"></iframe>
</div>
</div>
<script src="script.js"></script>
</body>
</html>