Skip to content

Commit 5261f30

Browse files
committed
html
1 parent df68718 commit 5261f30

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

Data Exporter/index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
}
5+
6+
.main

0 commit comments

Comments
 (0)