37 lines
942 B
HTML
37 lines
942 B
HTML
<html>
|
|
<head>
|
|
<title>NEXRAD Browser</title>
|
|
<style>
|
|
.grid-parent {
|
|
display: grid;
|
|
grid-template-columns: 2fr .5fr;
|
|
grid-template-rows: 1fr;
|
|
grid-column-gap: 5px;
|
|
grid-row-gap: 0px;
|
|
height: 100%;
|
|
}
|
|
|
|
.canvas-container {
|
|
border-right: 2px solid black;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="grid-parent">
|
|
<div class="canvas-container">
|
|
<canvas id="canvas"></canvas>
|
|
</div>
|
|
<div>
|
|
<label for="file">Upload Archive II file</label>
|
|
<input type="file" id="file" />
|
|
<button id="go">Load</button>
|
|
<hr>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="bootstrap.js"></script>
|
|
|
|
</body>
|
|
</html> |