-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 979 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Name Application // Hannes Kinnunen</title>
<meta name="author" content="Hannes Kinnunen" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://unpkg.com/modern-normalize">
<link rel="stylesheet" href="style.css">
</head>
<body>
<input type="search" placeholder="Search...">
<table>
<thead>
<tr>
<th id="name">Name</th>
<th id="amount">Amount</th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<th>Total</th>
<th id="total"></th>
</tr>
</tfoot>
</table>
<p class="callout">You can sort by name/amount by clicking on the header.</p>
<script src="https://unpkg.com/jquery@3.5/dist/jquery.min.js"></script>
<script type="text/javascript" src="magic.js"></script>
</body>
</html>