-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
44 lines (39 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<title>codEditor</title>
<link rel="stylesheet" href="index.css">
<script type="text/javascript" src="jquery.min.js"></script>
</head>
<body>
<!--header -->
<div id="header">
<!--logo on the header-->
<div id="logo">
codEditor
</div>
<div id="madeBy">
Made-By:
Abdur Rahman Robin
</div>
<!--button container, html-css-javascript-output-->
<!--initially html and output will be selected-->
<div id="buttonContainer">
<div class="toggleButton active" id="html">HTML</div>
<div class="toggleButton" id="css">CSS</div>
<div class="toggleButton" id="javascript">JavaScript</div>
<div class="toggleButton active" id="output">Output</div>
</div>
</div>
<div id="container">
<textarea id="htmlPanel" class="panel">html</textarea>
<textarea id="cssPanel" class="panel hidden">css</textarea>
<textarea id="javascriptPanel" class="panel hidden"></textarea>
<iframe id="outputPanel" class="panel"></iframe>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>