-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (63 loc) · 2.38 KB
/
index.html
File metadata and controls
71 lines (63 loc) · 2.38 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Json Parser</title>
<!-- meta tag -->
<meta name="author" content="TG">
<meta name="description"
content="Analyze JSON string as you type with an online Javascript parser,
featuring tree view and syntax highlighting.
Processing is quick and safe with no data send to server."
>
<!-- OGP -->
<meta property="og:locale" content="ja_JP">
<meta property="og:type" content="article">
<meta property="og:url" content="https://giangntbk2010.github.io/">
<meta property="og:title" content="Json Parse quick and safe ">
<meta property="og:description"
content="Analyze JSON string as you type with an online Javascript parser,
featuring tree view and syntax highlighting.
Processing is quick and safe with no data send to server."
>
<meta property="og:image" content="https://safejsonparse.github.io/image/konsan134.jpg">
<!-- twitter card -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Json Parse quick and safe ">
<meta property="twitter:description"
<!-- meta tag -->
<meta name="author" content="TG">
<meta name="description"
content="Analyze JSON string as you type with an online Javascript parser,
featuring tree view and syntax highlighting.
Processing is quick and safe with no data send to server."
>
<meta property="twitter:image" content="https://safejsonparse.github.io/image/konsan134.jpg">
<!-- keywords -->
<meta name="keywords" content="json parse, json, quick, save, not send data to server, json parser online">
<!-- end meta tag -->
<link rel="stylesheet" href="script/css/index.css">
<link rel="shortcut icon" href="image/icon/favicon.ico" type="image/x-icon">
<script src="lib/js/jquery-3.1.0.min.js"></script>
<script src="script/js/index.js"></script>
</head>
<body>
<div id="toolbar">
<button class="button button1" id="seeResultButton">See Result »</button>
</div>
<div class="container">
<textarea
id="jsonFormat"
class="col col1"
placeholder="Enter text as json format..."
autofocus
></textarea>
<div id="jsonParser" class="col col2">
<p> Json Parser Result...</p>
</div>
</div>
<div class="footer">
<p>Edited by TG</p>
</div>
</body>
</html>