forked from codante-io/rinha-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 963 Bytes
/
index.html
File metadata and controls
38 lines (37 loc) · 963 Bytes
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
<!DOCTYPE html>
<html lang='pt-BR'>
<head>
<meta charset='UTF-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<title>JSON Tree Viewer</title>
<link rel='icon' type='image/svg' href='assets/icon.svg' />
<link rel='stylesheet' href='css/style.css' />
<script src='js/lib.js'></script>
<script src='js/index.js' defer></script>
</head>
<body>
<main id='container'>
<h1 id='title'>JSON Tree Viewer</h1>
<p id='description'>
Simple JSON Viewer that runs completely on-client. No data exchange
</p>
<div id='json-input-container'>
<label
id='json-input-label'
for='json-input'
aria-label='Load JSON'
>
Load JSON
</label>
<input
id='json-input'
type='file'
accept='.json'
/>
<span id='json-input-error'>
Invalid file. Please load a valid JSON file.
</span>
</div>
</main>
</body>
</html>