We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df68718 commit 5261f30Copy full SHA for 5261f30
Data Exporter/index.html
@@ -0,0 +1,20 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Data Exporter</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ </head>
9
+ <body>
10
+ <div class="main">
11
+ <h1>Parv gugnani</h1>
12
+ <input type="file" id="csv" />
13
+ <table id="table" border="1"></table>
14
+ <br /><br />
15
+ <button id="btn">Export Data</button>
16
+
17
+ <script src="script.js"></script>
18
+ </div>
19
+ </body>
20
+</html>
Data Exporter/style.css
@@ -0,0 +1,6 @@
+* {
+ margin: 0;
+ padding: 0;
+}
+.main
0 commit comments