-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhongkong.html
151 lines (136 loc) · 4.92 KB
/
hongkong.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!doctype html>
<html>
<head>
<title>Hong Kong</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js" type="text/javascript"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/lotte.js" type="text/javascript"></script>
<style type="text/css">
/* Space out content a bit */
body {
padding-top: 20px;
padding-bottom: 20px;
}
/* Everything but the jumbotron gets side spacing for mobile first views */
.header,
.marketing,
.footer {
padding-left: 15px;
padding-right: 15px;
}
/* Custom page header */
.header {
border-bottom: 1px solid #e5e5e5;
}
/* Make the masthead heading the same height as the navigation */
.header h3 {
margin-top: 0;
margin-bottom: 0;
line-height: 40px;
padding-bottom: 19px;
}
.progress-bar {
color: black;
text-align: center;
}
/* Custom page footer */
.footer {
padding-top: 19px;
color: #777;
border-top: 1px solid #e5e5e5;
}
/* Customize container */
@media (min-width: 768px) {
.container {
max-width: 95%;
}
}
.container-narrow > hr {
margin: 30px 0;
}
#pageContent {
text-align: left;
}
/* Main marketing message and sign up button */
.jumbotron {
text-align: center;
border-bottom: 1px solid #e5e5e5;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
li {
text-align: left;
}
/* Supporting marketing content */
.marketing {
margin: 40px 0;
}
.marketing p + h4 {
margin-top: 28px;
}
p {
text-align: left;
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
/* Remove the padding we set earlier */
.header,
.marketing,
.footer {
padding-left: 0;
padding-right: 0;
}
/* Space out the masthead */
.header {
margin-bottom: 30px;
}
/* Remove the bottom border on the jumbotron for visual effect */
.jumbotron {
border-bottom: 0;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<ul class="nav nav-pills pull-right">
<li><a href="city.html">Cities</a></li>
<li><a href="columbus.html">Columbus</a></li>
<li><a href="copenhagen.html">Copenhagen</a></li>
</ul>
<h3 class="text-muted">Hong Kong <img src="ea-website-wei.jpeg" width="50"></h3>
</div>
<div class="jumbotron">
<h1 id="pageTitle">Hong Kong Overview</h1>
<img src="hong kong.jpg" width="250" align="right" align="top" style="PADDING-LEFT: 10px">
<p class="lead" id="pageContent"><ul>
<li>Hong kong has a population of over 7 million. Each day there are over 12 million passenger journeys on public transport.</li>
<li>
90% of daily journeys in Hong Kong are public transport (highest rate in the world)</li>
<li> Because of Hong Kong's steep, hilly terrain, massive covered outdoor escalator/walkways have been implemented. Daily traffic on these exceeds 85,000</li>
<li> The Massive Transit Railway (MTR) is an electric railway that carries about 4.4 million passenger trips per day </li>
<li> Additionally, Hong Kong boasts double-decker tramways, funicular railways, automated people-movers, buses, and cross-boundary trains</li>
<li> In 2005, there were only 18,138 taxis in Hong Kong</li>
<img src="hk escalator.jpg" width="250" align="right" align="top" style="PADDING-LEFT: 10px">
<li> Cars are subjected to a 35-100% registration tax; parking is tough and petroleum is heavily taxed. As of 2009, there were 584,000 licensed vehicles in Hong Kong. That’s about 1 car for every 12 Hong Kong residents.</li>
<li> Railway transport: energy use = 1/22 of private car. Public transport: energy use = 1/7 of private car </li>
<li> Some Hong Kong transportation figures: A private car passenger emits 170g of carbon dioxide per km, a bus passenger emits 34g, while a railway passenger emits 2.8g.</li>
</ul>
</p>
<div class="progress">
<div class="progress-bar progress-bar-warning" id="pageProgress" style="width: 50%;"> </div>
</div>
<p>
<a class="btn btn-lg btn-success" href="city.html">Back</a>
</p>
</div>
<div class="footer">
<p>© YSYTPBJJC 2014</p>
</div>
</div> <!-- /container -->
</body>