-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (51 loc) · 1.4 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
50
51
52
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<title>Convert Sonix CSV to HTML/JSON</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<h1>Process Sonix CSV</h1>
<p>
Convert a CSV from <a href="https://sonix.ai">Sonix</a> to corresponding
HTML and JSON, which can be used in your web application.
</p>
<main class="app">
<div class="inputs">
<div class="left">
<h2>Sonix CSV</h2>
<textarea
onclick="this.select()"
spellcheck="false"
id="input-csv"
cols="30"
rows="5"
></textarea>
</div>
<div class="right">
<h2>HTML</h2>
<textarea
onclick="this.select()"
spellcheck="false"
id="input-html"
cols="30"
rows="10"
></textarea>
<h2>JSON</h2>
<textarea
onclick="this.select()"
spellcheck="false"
id="input-json"
cols="30"
rows="10"
></textarea>
</div>
</div>
<button id="convert">Convert</button>
</main>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/7.6.1/d3.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>