-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtryit.php
More file actions
39 lines (39 loc) · 1.31 KB
/
tryit.php
File metadata and controls
39 lines (39 loc) · 1.31 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Tryit Editor</title>
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/trystyle.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<?php include('include/nav.php'); ?>
</nav>
<table id="table-body">
<tr>
<td>
<div class="tag">HTML (Body)</div>
<textarea id="html" class="content" ></textarea>
</td>
<td>
<div class="tag">CSS</div>
<textarea id="css" class="content" ></textarea>
</td>
</tr>
<tr>
<td>
<div class="tag">JavaScript</div>
<textarea id="js" class="content" ></textarea>
</td>
<td>
<div class="tag">Output</div>
<iframe id="output"></iframe>
</td>
</tr>
</table>
</body>
</html>
<script type="text/javascript" src="js/tryEditor.js"></script>
<script src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>