-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (28 loc) · 1.25 KB
/
index.html
File metadata and controls
44 lines (28 loc) · 1.25 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
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="source/code-editor.svg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Code Editor</title>
</head>
<body>
<div class="container">
<div class="left">
<label> <i class="fa-brands fa-html5" style="color: #B197FC;"></i> Html</label>
<textarea id="html-code" onkeyup="run()"></textarea>
<label> <i class="fa-brands fa-css3-alt" style="color: #63E6BE;"></i> CSS</label>
<textarea id="css-code" onkeyup="run()"></textarea>
<label><i class="fa-brands fa-js" style="color: #FFD43B;"></i> JavaScript</label>
<textarea id="js-code" onkeyup="run()"></textarea>
</div>
<div class="right">
<label> <i class="fa-solid fa-play" style="color: #cf0707;"></i> Output </label>
<iframe id="output"></iframe>
</div>
</div>
<script src="script.js"></script>
<script src="https://kit.fontawesome.com/fbf97ee547.js" crossorigin="anonymous"></script>
</body>
</html>