-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.47 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!--
Author: Ola White
Description: Welcome to my HTML code. Thank you for visiting my code base! Feel free to follow me on my pages:
Portfolio: https://www.olawhite.com/
Github: https://github.com/whitesoftx
Twitter: https://twitter.com/olawhite
Enjoy exploring!
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSV File Merger - by Ola White</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="pic.png" type="image/png" />
</head>
<body>
<img src="csv.png" alt="logo" />
<br />
<h2>CSV File Merger</h2>
<br />
<div class="upload-btn-wrapper">
<button class="btn">
<img src="plus.png" alt="Upload files" class="logo" /><br /><br />Upload
Files
</button>
<input type="file" id="fileInput" multiple />
</div>
<br />
<div id="fileCountMessage"></div>
<button id="mergeBtn" onclick="mergeFiles()">Merge & Download</button><br />
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
<script src="script.js"></script>
<footer>
© <span id="currentYear"></span> - Built with 🧡 by
<a href="https://olawhite.com" target="_blank">Ola White</a>
</footer>
<script>
document.getElementById("currentYear").textContent =
new Date().getFullYear();
</script>
</body>
</html>