-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (61 loc) · 3.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<!--/**
*
* @link https://github.com/mzm-dev
* @created September 2014
* @fb https://www.facebook.com/zakimedia
* @email mohdzaki04@gmail.com
*/-->
<html>
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Getting started with JSON using JavaScript and jQuery" name="description">
<meta content="Mohamad Zaki" name="author">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="header">
<ul class="nav nav-pills pull-right">
<li class="active"><a href="https://github.com/pesima/JSON-Example">Get the code on Github now HighCharts</a></li>
</ul>
<h3 class="text-muted">A JSON Tutorial</h3>
</div>
<div class="jumbotron">
<p class="lead">Getting started with JSON using JavaScript and jQuery</p>
</div>
<div class="row marketing">
<div class="col-lg-6">
<h4>Example 1<a href="example1.html" class="btn btn-xs" role="button"><span class="glyphicon glyphicon-link"></span></a></h4>
<p>Breaking JSON down</p>
<h4>Example 2<a href="example2.html" class="btn btn-xs" role="button"><span class="glyphicon glyphicon-link"></span></a></h4>
<p>Creating an object placeholder</p>
<h4>Example 3<a href="example3.html" class="btn btn-xs" role="button"><span class="glyphicon glyphicon-link"></span></a></h4>
<p>Adding Arrays</p>
</div>
<div class="col-lg-6">
<h4>Example 4<a href="example4.html" class="btn btn-xs" role="button"><span class="glyphicon glyphicon-link"></span></a></h4>
<p>Traversing the user list</p>
<h4>Example 5<a href="example5.html" class="btn btn-xs" role="button"><span class="glyphicon glyphicon-link"></span></a></h4>
<p>Reading JSON from an external file</p>
</div>
</div>
<div class="footer">
<p>© Company 2014</p>
</div>
</div> <!-- /container -->
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>