-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (87 loc) · 3.21 KB
/
index.html
File metadata and controls
88 lines (87 loc) · 3.21 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<html>
<head>
<title>Communication Status in South Asia</title>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#expanderHead").click(function(){
$("#expanderContent").slideToggle();
if ($("#expanderSign").text() == "+"){
$("#expanderSign").html("-")
}
else {
$("#expanderSign").text("+")
}
});
});
</script>
<style type="text/css">
.container, .navbar {
width: 960px !important;
background-color: #E5E4E2;
}
body {
background-color: black;
}
hr {
border-top: 2px solid #ccc;
}
</style>
</head>
<script type="text/javascript" src="js/chart_internet.js"></script>
<script type="text/javascript" src="js/chart_mobile.js"></script>
<script type="text/javascript" src="js/chart_internet_pie.js"></script>
<script type="text/javascript" src="js/chart_internet_users.js"></script>
<link rel="shortcut icon" href="img/favicon.png" type="image/png">
<body>
<center>
<img src="img/header_final.png" />
</center>
<div class="container">
<div class="navbar">
<div class="navbar-inner">
<ul class="nav">
<li class="active"><a href="index.html">South Asia</a></li>
<li><a href="nepal_index.html">Nepal</a></li>
</ul>
</div>
</div>
<div class="row-fluid">
<h2 align="center">South Asia</h2>
<div class="span10 offset1 well">
<div id="saarc_internet"></div>
<br />
<hr>
<div id="saarc_mobile_subscription"></div>
<br />
<hr>
<div id="saarc_internet_pie"></div>
<br />
<hr>
<div id="saarc_internet_users"></div>
<br />
<hr>
<h4 id="expanderHead" style="cursor:pointer;">
Analysis
<span id="expanderSign">+</span>
</h4>
<div id="expanderContent" style="display:none">
<p style="color: black; font-weight: bold; color: #777777;">
The number of internet, mobile users is increasing rapidly in South Asian countries. South Asia is home to well over one fifth of the world's population, making it both the most populous and the most densely populated geographical region in the world. But, still large number of population in South Asia are deprived of communication services. Thus, there's still a large void to fill.
</p>
</div>
<hr>
</div>
</div>
</div>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="footer">
<div class="container">
<p class="muted credit" align="center">Courtesy Team Young, Open Nepal Hackathon 2013</p>
</div>
</div>
</body>
</html>