-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (36 loc) · 1.62 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta name ="viewpoint" content="width=device-width, initial-scale=1.0">
<title> Live Code Editor </title>
<link rel ="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/5e616c69ff.js" crossorigin="anonymous"></script>
<!-- DEVELOPED BY RIYA MONDAL-->
</head>
<body>
<div class="container">
<div class ="left">
<label> <i class="fa-brands fa-html5"></i>HTML</label>
<textarea id="html-code" onkeyup="run()"></textarea>
<label><i class="fa-brands fa-css3-alt"></i> CSS</label>
<textarea id="css-code"onkeyup="run()"></textarea>
<label><i class="fa-brands fa-js"></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>
function run(){
let htmlCode=document.getElementById("html-code").value;
let cssCode=document.getElementById("css-code").value;
let jsCode=document.getElementById("js-code").value;
let output=document.getElementById("output");
output.contentDocument.body.innerHTML=htmlCode+"<style>"+cssCode+"</style>";
output.contentWindow.eval(jsCode);
}
</script>
</body>
</html>