dubroy-user-input/index.html

29 lines
732 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Patrick Dubroy's Toy Problem in Syndicate</title>
<meta charset="utf-8">
<script src="node_modules/@syndicate-lang/core/dist/syndicate.js"></script>
<script src="node_modules/@syndicate-lang/html/dist/syndicate-html.js"></script>
<style>
#container {
width: 100%;
height: 300px;
background: #ccf;
}
.square {
position: relative;
background: blue;
border: solid white 1px;
}
</style>
</head>
<body>
<h1>Patrick Dubroy's Toy Problem in Syndicate</h1>
<pre id="status"></pre>
<div id="container" tabindex="0"></div>
<script src="index.js"></script>
</body>
</html>