43 lines
957 B
HTML
43 lines
957 B
HTML
<!--
|
|
|
|
setPiecesDirector.html
|
|
|
|
Created by David Rowe on 8 Aug 2019.
|
|
Copyright 2019 David Rowe.
|
|
|
|
Distributed under the Apache License, Version 2.0.
|
|
See: http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Set Pieces Director</title>
|
|
<link rel="stylesheet" type="text/css" href="setPiecesDirector.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<table id="groups">
|
|
<tbody>
|
|
<!--
|
|
<tr id="roof">
|
|
<td>Roof</td>
|
|
<td><input type="button" value="IN" class="in" /></td>
|
|
<td>3.5 s</td>
|
|
</tr>
|
|
<tr id="sky">
|
|
<td>Sky</td>
|
|
<td><input type="button" value="OUT" class="out" /></td>
|
|
<td>3.5 s</td>
|
|
</tr>
|
|
-->
|
|
</tbody>
|
|
</table>
|
|
|
|
<script src="setPiecesDirector.js"></script>
|
|
</body>
|
|
</html>
|