20 lines
406 B
HTML
20 lines
406 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Matrix Map Demo (TS)</title>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
canvas { margin: 20px; }
|
|
div { margin: 10px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script src="../dist/matrix-demo.js"></script>
|
|
</body>
|
|
</html>
|