-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
28 lines (28 loc) · 1.08 KB
/
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
25
26
27
28
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>JavaScript / HTML :: CSV File Code Challenge</title>
<link rel="stylesheet" href="css/main.css">
<script defer src="js/main.js"></script>
</head>
<body>
<div class="container">
<label>Select a CSV file to be processed: </label>
<input type="file" id="cvsfile" onchange="loadCSVFile(event);">
<br><br>
<section class="csv-details">
<h4>CSV headings: </h4>
<div id="head-text-div" class="textarea" contenteditable></div>
<br><br>
<h4>CSV values: </h4>
<div id="text-div" class="textarea" contenteditable></div>
<br><br>
<h4>Processed CSV values: </h4>
<div id="pro-text-div" class="textarea" contenteditable></div>
</section>
<textarea id="original" class="hidden"></textarea>
<textarea id="processed" class="hidden"></textarea>
</div>
</body>
</html>