20 lines
517 B
HTML
20 lines
517 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Layout Editor</title>
|
||
|
<script type="text/javascript" src="prototype.js"></script>
|
||
|
<script type="text/javascript" src="LayoutEditor.js"></script>
|
||
|
<style type="text/css">
|
||
|
#layout-editor-container div {
|
||
|
border: solid red 1px ;
|
||
|
background-color: #aaa
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="layout-editor-container" style="width: 300px"></div>
|
||
|
<form id="layout-editor-controls">
|
||
|
<fieldset>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|