-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 786 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 786 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
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Web Based Code Editor</title>
<link rel="stylesheet" href="css/stylesheet.css" />
</head>
<body>
<header class="header">
<p>
Web Based Live Code 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>
<p class="p2">Which editor would you like to go to?</p>
<a href="html.html" class="button">[HTML]</a>
<br />
<a href="javascript.html" class="button">[JavaScript]</a>
<br />
<h2>
Please note: The Javascript dedicated editor is very glitchy, I am
working to fix it, but I reccomend using the HTML editor with script
tags
</h2>
</body>
</html>