-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (21 loc) · 775 Bytes
/
index.html
File metadata and controls
28 lines (21 loc) · 775 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
<!DOCTYPE html>
<html>
<head>
<title>Layout</title>
</head>
<body onload="main();">
<table style="margin:auto; text-align:center;"><tr><td>
<canvas id="canvasMain" width="640" height="480" style="float:left; border:1px solid gray;"></canvas>
</td><td>
<textarea id="textareaMain" style="width:500px; height:480px;"></textarea>
</td></tr></table>
</body>
<script src="src/size.js"></script>
<script src="src/layout.js"></script>
<script src="src/layout_parser.js"></script>
<script src="src/elem_text.js"></script>
<script src="src/elem_panel.js"></script>
<script src="src/elem_scroll.js"></script>
<script src="src/elem_table.js"></script>
<script src="src/main.js"></script>
</html>