-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 893 Bytes
/
index.html
File metadata and controls
39 lines (39 loc) · 893 Bytes
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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Export Data</title>
</head>
<body>
<main>
<table class="table">
<thead>
<th>Name</th>
<th>Age</th>
<th>Country</th>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>30</td>
<td>Usa</td>
</tr>
<tr>
<td>Jane Smitch</td>
<td>25</td>
<td>Canada</td>
</tr>
<tr>
<td>Sam Brown</td>
<td>40</td>
<td>Uk</td>
</tr>
</tbody>
</table>
<button id="exportBtn">Export Data</button>
</main>
<script src="script.js"></script>
</body>
</html>