-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiverSheet.html
33 lines (27 loc) · 920 Bytes
/
DiverSheet.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./node_modules/bulma/css/bulma.css">
<link rel="stylesheet" type="text/css" href="./node_modules/@fortawesome/fontawesome-free/css/all.css">
<link rel="stylesheet" type="text/css" href="./assets/css/DiveSheetTables.css">
</head>
<body>
<div class="modal is-active" id="loadingmodal">
<div class="modal-background"></div>
<div class="modal-content">
<center><a class="button is-loading">loading</a></center>
</div>
<button class="modal-close is-large" aria-label="close"></button>
</div>
<center>
<h1 class="title" id="title">Diver Name</h1>
</center>
<div class="container is-fluid">
<center>
<table id="divetable">
</table>
</center>
</div>
<script src="./assets/js/DiverSheet.js"></script>
</body>
</html>