35 lines
797 B
HTML
35 lines
797 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Shapes</title>
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
position: relative;
|
|
margin: 0;
|
|
}
|
|
|
|
fc-geometry {
|
|
background: rgb(187, 178, 178);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<fc-geometry x="100" y="100" width="50" height="50"></fc-geometry>
|
|
<fc-geometry x="100" y="200" width="50" height="50"></fc-geometry>
|
|
<fc-geometry x="100" y="300" width="50" height="50"></fc-geometry>
|
|
|
|
<script type="module">
|
|
import { FolkGeometry } from '../src/canvas/fc-geometry.ts';
|
|
|
|
FolkGeometry.register();
|
|
</script>
|
|
</body>
|
|
</html>
|