graph-start/index.html
2022-05-03 19:41:22 -07:00

42 lines
948 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>A simple graph starter</title>
<style>
* {
box-sizing: border-box;
}
body {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin: 0;
overflow: hidden;
}
canvas {
position: absolute;
width: 100%;
height: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
</style>
</head>
<body>
<noscript>
<strong>We're sorry but puller doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<canvas id='cnv'></canvas>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>