-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
executable file
·46 lines (40 loc) · 2.27 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
<!DOCTYPE html>
<html>
<head>
<!-- Site Information -->
<meta charset="utf-8" />
<title>Live Editor</title>
<meta name="description" content="Preview HTML, CSS, and JavaScript live in your browser in realtime." />
<meta name="keywords" content="editor, realtime editor, jsfiddle, codepen, stackoverflow, HTML, CSS, JavaScript" />
<meta property="og:title" content="Live Editor" />
<meta property="og:url" content="http://staticresource.com/editor" />
<meta property="og:description" content="Preview HTML, CSS, and JavaScript live in your browser in realtime." />
<!-- Cascading Style Sheets -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href="css/global.css" rel="stylesheet">
<!-- JavaScript -->
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/editor.js" type="text/javascript"></script>
<!-- Mobile Settings -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no, minimal-ui" />
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<!-- Favicon and Thumbnails -->
<meta property="og:image" content="img/ico/thumb.png" />
<link rel="shortcut icon" type="image/png" href="img/ico/favicon.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="img/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="img/ico/apple-touch-icon-57-precomposed.png">
</head>
<body>
<section>
<h1>Live Editor</h1><a class="clearLink" href="#" title="Click to clear all">clear</a>
<textarea id="html" value="" placeholder="HTML" autocapitalize="off" autofocus></textarea>
<textarea id="css" value="" placeholder="CSS" autocapitalize="off"></textarea>
<textarea id="js" value="" placeholder="JavaScript" autocapitalize="off"></textarea>
<iframe id="preview"></iframe>
</section>
</body>
</html>