aprsNotifyJS/index.html

24 lines
374 B
HTML
Raw Normal View History

<head>
2018-07-10 18:53:56 -04:00
<meta charset="UTF-8">
<script src="./client.js"></script>
2018-07-10 19:03:21 -04:00
<style>
table.calls {
border-collapse: collapse;
}
table.calls td, table.calls th{
border: 1px solid black;
}
table.calls tr.timedOut {
background-color: red;
}
</style>
</head>
<body>
<div class="wrapper">
2018-07-10 19:03:21 -04:00
<table class="calls">
</table>
</div>
</body>