git_bsmd/AIS/bsmd.AIS2Service/index.html

31 lines
891 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AIS List</title>
<script type="text/javascript" src="update.js"></script>
</head>
<body onload="startup()">
<div class="table-wrapper">
<table id="aisTable" class="fl-table">
<thead>
<tr>
<th>MMSI</th>
<th>Name</th>
<th>Timestamp</th>
<th>Latitude</th>
<th>Longitude</th>
<th>IMO</th>
<th>Class B</th>
</tr>
</thead>
<tbody id="aisTableBody">
</tbody>
</table>
</div>
</body>
</html>