-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 1.14 KB
/
index.html
File metadata and controls
34 lines (29 loc) · 1.14 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
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--CDN Font Awesome -->
<script src="https://kit.fontawesome.com/76ef34fa2d.js" crossorigin="anonymous"></script>
<!--custom style sheet-->
<link rel="stylesheet" href="./style.css">
<title>Live Code Editor</title>
</head>
<body>
<div class="container">
<div class="left">
<label><i class="fa-brands fa-html5" style="color: #e46f01;"></i> HTML</label>
<textarea id="html-code" onkeyup="run()"></textarea>
<label><i class="fa-brands fa-css3-alt" style="color: #3881ff;"></i> CSS</label>
<textarea id="css-code" onkeyup="run()"></textarea>
<label><i class="fa-brands fa-square-js" style="color: #e3e633;"></i> JavaScript</label>
<textarea id="js-code" onkeyup="run()"></textarea>
</div>
<div class="right">
<label><i class="fa-solid fa-play"></i> Output</label>
<iframe id="output"></iframe>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>