-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (37 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-site-verification" content="wVopT1W7d_vcv-wKJqGyzF7OR5YGSqbpucyc7U7JgzQ" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords",content="online code editor","somnath pan","text editor","vscode","online text editor","html online editor",>
<meta name="author",content="somnath pan">
<title>Online Code Editor</title>
<!-- HTML -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="branding">
<h6>SPARK - ONLINE CODE EDITOR</h6>
</div>
<!-code for top navigation bar-->
<div class="selector">
<button id="htmlb" onclick="showhtml()">HTML</button>
<button id="cssb" onclick="showcss()">CSS</button>
<button id="jsb" onclick="showjs()">JS</button>
<button onclick="run()">Run⟩</button>
</div>
<!-code for code input-->
<div class="e-container">
<textarea id="html" placeholder="write some html" spellcheck="false"></textarea>
<textarea id="css" placeholder="write some css" spellcheck="false" hidden></textarea>
<textarea id="js" placeholder="write some javascript" spellcheck="false" hidden></textarea>
</div>
<!-code for output-->
<div class="o-container">
<iframe id="output"></iframe>
</div>
<script src="main.js"></script>
</body>
</html>