-
Notifications
You must be signed in to change notification settings - Fork 0
/
four_organs.html
42 lines (36 loc) · 1.21 KB
/
four_organs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Four Organs Editor</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>
<link rel="stylesheet" href="editor.css" />
<script type="text/javascript" src="editor.js"></script>
</head>
<body onload="init()">
<div id="editor">
<ul class="tabnav">
<li><a href="#css">CSS Editor</a></li>
<li><a href="#html">HTML Editor</a></li>
</ul>
<form name="editor">
<div class="tab_container">
<div id="css" class="tab-content">
<h2>CSS Editor</h2>
<textarea name="cssinput" id="cssinput" rows="15" cols="35"></textarea>
</div>
<div id="html" class="tab-content">
<h2>HTML Editor</h2>
<textarea name="htmlinput" id="htmlinput" rows="15" cols="35"></textarea>
</div>
</div>
<div class="buttons">
<input id="update" name="update" type="button" onclick="update_html();update_css();" value="Update" />
</div>
</form>
</div>
<div id="page">
</div>
</body>
</html>