-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.03 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.03 KB
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
<html lang="es">
<head>
<meta charset="utf-8">
<style type="text/css">
body {
height: 1000px;
width: 450px;
}
.content {
width: 400px;
}
.inputContent {
width: 100%;
height: 200px;
}
.outputContent {
width: 100%;
height: 800px;
}
.force-select-all {
user-select: all;
}
</style>
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm card">
<h2>JSON Parser</h2>
</div>
</div>
<div class="row">
<div class="col-sm card">
<textarea class="inputContent" id="inputString"></textarea>
</div>
<!-- <div class="col-sm"></div> -->
<div class="col-sm card">
<textarea class="outputContent" id="responseJson"></textarea>
</div>
</div>
</div>
<script src="parser.js"></script>
</body>
</html>