forked from lighthouse-labs/git-mania
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcities.html
More file actions
39 lines (33 loc) · 768 Bytes
/
cities.html
File metadata and controls
39 lines (33 loc) · 768 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Git Collab Exercise</title>
<style type="text/css">
body {
font-size: 2.0em;
}
</style>
</head>
<body>
<h1>Top cities, by population</h1>
<p>
Taken (borrowed?) from
<a href="http://en.wikipedia.org/wiki/List_of_cities_proper_by_population" target="_blank">
Wikipedia
</a>
</p>
<hr/>
<ol>
<li>Prince George (not available)</li>
<li>Vancouver (15,345,2324)</li>
<li>Shanghai (17,836,133)</li>
<li>Istanbul (13,854,740)</li>
<li>Karachi (12,991,000)</li>
<li>Mumbai (12,478,447)</li>
<li>Toronto (7,344,123) </li>
<li>New York City (20,455,000) </li>
<li>Tokyo (34,567,345)</li>
<li>Seattle (900,000,000)</li>
</ol>
</body>
</html>