-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
61 lines (50 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="keywords" content="html code editor, codeeditor ">
<meta name="title" content="code editor">
<meta name="description"
content="A source-code editor is a text editor program designed specifically for editing source code of computer programs. It may be a standalone application or it may be built into an integrated development environment or web browser.">
<meta name="theme-color" content="#04AA6D">
<!-- Favicon -->
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<!-- CSS -->
<link rel="stylesheet" href="./CSS/style.css">
<link rel="stylesheet" href="./CSS/responsive.css">
<title>Code Editor</title>
</head>
<body>
<div class="editor-menu">
<button class="btn btn-dark">Dark Mode</button>
<button class="btn btn-light">Light Mode</button>
<button class="btn btn-Run">Run <i class="fas fa-angle-right"></i></button>
<div class="live">
<label for="live">Live</label>
<input type="checkbox" id="live">
</div>
</div>
<div class="container">
<div class="left">
<div class="editor" contenteditable="">
Write your code...
</div>
</div>
<div class="bar" title="Click and Drag"></div>
<div class="right">
<iframe src="" frameborder="0" class="iframe"></iframe>
</div>
</div>
<div class="credits">
Created by <span>Bhavya Khurana</span>
</div>
<!-- JavaScript -->
<script src="./script.js"></script>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/c387a6ff36.js" crossorigin="anonymous"></script>
</body>
</html>