-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (48 loc) · 1.11 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List</title>
<link rel="stylesheet" href="./style/global.css">
<style>
.table {
margin-top: 1rem;
}
</style>
</head>
<body>
<header class="header"></header>
<main class="main">
<aside class="sidebar"></aside>
<div class="main-content">
<article>
<header>
<h2>List</h2>
</header>
<div>
<table class="table table-user">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Age</th>
<th>Company</th>
<th>Birthday</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</article>
</div>
</main>
<footer class="footer">
<p>Made by Rhenald Karrel</p>
</footer>
<script type="module" src="./js/pages/index.js"></script>
</body>
</html>