40 lines
989 B
HTML
40 lines
989 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>NEXRAD Browser</title>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
#canvas-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
canvas {
|
|
z-index: 10000;
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: NXRD;
|
|
src: url(./NXRD.ttf);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="canvas-container"></div>
|
|
|
|
<input type="file" id="file" style="display: none;" />
|
|
|
|
<script src="bootstrap.js"></script>
|
|
</body>
|
|
</html> |