-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
51 lines (41 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="description" content="JSON Lint is a web based validator and reformatter for JSON, a lightweight data-interchange format.">
<title>JSONLint - The JSON Validator</title>
<link rel="stylesheet" href="css/screen.css" type="text/css" media="screen, projection">
<link href="css/jquery-linedtextarea.css" type="text/css" rel="stylesheet">
<link rel="icon" type="image/png" href="images/favicon.png" />
</head>
<body>
<a href="http://www.arc90.com/" id="arc90-logo" title="An Arc90 Lab Experiment">Arc90.com</a>
<input type="hidden" id="reformat" value="1" />
<input type="hidden" id="compress" value="0" />
<div id="json-composite-placeholder">
<div id="results_header" class="hide">
<h3>
Results <img title="Loading..." class="reset" alt="Loading" src="images/loadspinner.gif" id="loadSpinner" name="loadSpinner">
</h3>
</div>
<script type="text/javascript">
if (typeof JSON === 'undefined') {
document.write('<sc' + 'ript type="text/javascript" src="js/utils/json2.js"></sc' + 'ript>');
}
</script>
<script src="js/main.js"></script>
<script src="js/jsonlint/jsl.format.js"></script>
<script src="js/jsonlint/jsl.parser.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2118091-14']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>