folk-canvas/website/index.html

34 lines
673 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 {
width: 100%;
height: 100%;
position: fixed;
overflow: hidden;
}
body {
min-height: 100%;
position: relative;
margin: 0;
}
folk-shape {
background: rgb(187, 178, 178);
}
</style>
</head>
<body>
<folk-shape x="100" y="100" width="50" height="50"></folk-shape>
<script type="module">
import '../lib/standalone/folk-shape.ts';
</script>
</body>
</html>