forked from seito-developer/simple-app-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-table.html
34 lines (30 loc) · 902 Bytes
/
data-table.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
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<header class="header">
<nav class="nav" id="js-nav">
<a data-page="index" href="./index.html">TOP</a>
<a data-page="data-table" href="./data-table.html">DATA TABLE</a>
<a data-page="data-form" href="./data-form.html">DATA FORM</a>
</nav>
</header>
<h1>DATA TABLE</h1>
<div class="container">
<table class="data-table">
<thead>
<th>First</th>
<th>Last</th>
<th>Born</th>
</thead>
<tbody id="js-firebase-table"></tbody>
</table>
</div>
<script type="module" src="/assets/scripts/main.js"></script>
</body>
</html>