-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
46 lines (39 loc) · 1.46 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
<!doctype html>
<head>
<title>CSV Viewer Online</title>
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="./styles.css">
<meta name="description" content="Super SIMPLE viewer for CSV files">
</head>
<body>
<div class="sponsors">
<a
href="https://tabootwin.com?utm_source=csv-viewer-online"
class="sponsor"
target="_blank"
rel="noopener"
aria-label="TabooTwin AI Girlfriend"
>
<img src="./tabootwin.png" width="300" height="100" alt="TabooTwin AI Girlfriend">
</a>
<div>
<a href="mailto:csv-viewer-online@tianon.anonaddy.me?subject=Advertising on CSV Viewer" class="place-your-ad-here">
Place YOUR AD HERE <br> 6.8k visitors monthly, $15/month
</a>
</div>
</div>
<input type="file" id="input-file" accept=".csv">
<div id="handsontable-container"></div>
<script src="https://cdn.jsdelivr.net/npm/handsontable@13/dist/handsontable.full.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/papaparse@5"></script>
<script src="./app.js?1"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/handsontable@13/dist/handsontable.full.min.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NVLYJXZFK6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NVLYJXZFK6');
</script>
</body>