-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind-btn.html
40 lines (30 loc) · 1.17 KB
/
tailwind-btn.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
<!-- https://www.geeksforgeeks.org/introduction-to-handsontable-js/ -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content=
"width=device-width, initial-scale=1.0">
<title>Introduction to Handsontable.js</title>
<script src=
"https://cdn.jsdelivr.net/npm/[email protected]/dist/handsontable.full.min.js">
</script>
<link href="./style.css" rel="stylesheet">
<link href="./css/all.css" rel="stylesheet">
<link href=
"https://cdn.jsdelivr.net/npm/[email protected]/dist/handsontable.full.min.css"
rel="stylesheet" media="screen">
</head>
<body>
<h1>
<center>Create your first data-grid</center>
</h1>
<div class="btn btn-accent controls"> button </div>
<div class="btn btn-accent controls">
<button id="export-file"><i class="fas fa-user"></i> <i class="fas fa-download"></i> <i class="fa-thin fa-download"></i> <i class="fa-regular fa-file-arrow-down"></i> <i class="fa-duotone fa-folder-arrow-down"></i> Download CSV</button>
</div>
<!-- container to wrap the data-grid -->
<div class="handsontable-container"></div>
<script src="index.js"></script>
</body>
</html>