Files
filament/web/docs/demo_template.html
2021-12-06 12:59:23 -08:00

21 lines
685 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Filament Demo</title>
<link href="https://google.github.io/filament/favicon.png" rel="icon" type="image/x-icon" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<style>
body { margin: 0; overflow: hidden; }
canvas { touch-action: none; width: 100%; height: 100%; }
</style>
</head>
<body>
<canvas></canvas>
<script src="//unpkg.com/filament@1.15.0/filament.js"></script>
<script src="//unpkg.com/gl-matrix@2.8.1"></script>
<script src="//unpkg.com/gltumble"></script>
<script src="$SCRIPT"></script>
</body>
</html>