-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsv.html
More file actions
27 lines (26 loc) · 742 Bytes
/
csv.html
File metadata and controls
27 lines (26 loc) · 742 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSV Upload and Display</title>
<link rel="stylesheet" href="csv.css">
</head>
<body>
<div class="container">
<h1>Upload and Display CSV</h1>
<form id="csvForm">
<input type="file" id="csvFile" accept=".csv" />
<button type="button" onclick="readCSV()">Upload and Display</button>
</form>
<table id="csvTable">
<thead>
<tr></tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script src="csv.js"></script>
</body>
</html>