-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) 路 1.6 KB
/
Copy pathindex.html
File metadata and controls
48 lines (45 loc) 路 1.6 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
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code Runner - Mr. Kuldeep</title>
<link rel="stylesheet" href="style.css " />
<link rel="web icon" href="/img/web icon.PNG">
<script
src="https://kit.fontawesome.com/5a2806fb6d.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="container" id="container">
<div class="left">
<label><i class="fa-sharp fa-solid fa-code"></i>HTML</label>
<textarea id="htmlcode" spellcheck="false" onkeyup="run()"></textarea>
<label><i class="fa-brands fa-css3-alt"></i>CSS</label>
<textarea id="csscode" onkeyup="run()" spellcheck="false"></textarea>
<label><i class="fa-brands fa-js"></i>JavaScript</label>
<textarea id="jscode" spellcheck="false" onkeyup="run()"></textarea>
</div>
<div class="right">
<label
><span><i class="fa-solid fa-play"></i>Output</span
><span
><a href="#outputBox" class="outRight"
>Full Page <i class="fa-solid fa-play"></i></a></span
></label>
<iframe id="output"></iframe>
</div>
<div id="outputBox">
<label
><a href="#container"
><i class="fa-solid fa-play"></i>Back to code</a
></label
>
<iframe id="outputpage"></iframe>
</div>
</div>
<script src="script.js"></script>
</body>
</html>