rtwx/nexrad-browser/www/index.html

23 lines
500 B
HTML
Raw Normal View History

2023-11-03 20:33:22 +00:00
<html>
<head>
<title>NEXRAD Browser</title>
<style>
2023-11-04 04:08:31 +00:00
#canvas {
width: 100%;
2023-11-03 20:33:22 +00:00
height: 100%;
2023-11-04 04:08:31 +00:00
image-rendering: pixelated;
2023-11-04 05:23:23 +00:00
z-index: 10000;
2023-11-03 20:33:22 +00:00
}
2023-11-04 04:08:31 +00:00
body {
margin: 0;
padding: 0;
2023-11-03 20:33:22 +00:00
}
</style>
</head>
<body>
2023-11-04 21:38:51 +00:00
<input type="file" id="file" style="display: none;" />
2023-11-03 20:33:22 +00:00
<script src="bootstrap.js"></script>
</body>
</html>