rtwx/nexrad-browser/www/index.html

40 lines
989 B
HTML
Raw Normal View History

2023-11-07 14:35:37 +00:00
<!DOCTYPE html>
<html lang="en">
2023-11-03 20:33:22 +00:00
<head>
<title>NEXRAD Browser</title>
2023-11-07 14:35:37 +00:00
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-11-03 20:33:22 +00:00
<style>
2023-11-07 14:35:37 +00:00
#canvas-container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
canvas {
2023-11-04 05:23:23 +00:00
z-index: 10000;
image-rendering: pixelated;
2023-11-03 20:33:22 +00:00
}
2023-11-04 04:08:31 +00:00
body {
margin: 0;
padding: 0;
2023-11-07 19:26:25 +00:00
overflow: hidden;
2023-11-03 20:33:22 +00:00
}
2023-11-08 20:05:11 +00:00
@font-face {
font-family: NXRD;
src: url(./NXRD.ttf);
}
2023-11-03 20:33:22 +00:00
</style>
</head>
<body>
2023-11-07 14:35:37 +00:00
<div id="canvas-container"></div>
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>