-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 823 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simple CSV Viewer</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Simple CSV Viewer</h1>
<div id="drop-area">
<p>Drag & drop a CSV file here, or click to select</p>
<input type="file" id="fileElem" accept=".csv" style="display: none" />
</div>
<div id="table-container"></div>
<div id="buttons-container">
<button id="editButton" disabled>Edit</button>
<button id="saveButton" disabled>Save as CSV</button>
<button id="jsonButton" disabled>Save as JSON</button>
<button id="clearButton" disabled>Clear</button>
</div>
<script src="script.js"></script>
</body>
</html>