-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhtml.html
More file actions
27 lines (27 loc) · 738 Bytes
/
html.html
File metadata and controls
27 lines (27 loc) · 738 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Web Based HTML Editor</title>
<link rel="stylesheet" href="css/stylesheet.css" />
<link rel="stylesheet" href="css/editor-style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.11/ace.js"></script>
</head>
<body onload="ready()">
<header class="header">
<p>
Web Based Live HTML Editor by
<a href="https://github.com/geard-dev/">geard-dev</a>
</p>
<a
href="https://github.com/geard-dev/web-based-live-code-editor"
class="button"
>[View Source Code on GitHub]</a
>
</header>
<div id="container">
<div id="editor"></div>
<iframe id="iframe" frameborder="0"></iframe>
</div>
<script src="js/html.js"></script>
</body>
</html>