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
42 lines (36 loc) · 827 Bytes
/
cities.html
File metadata and controls
42 lines (36 loc) · 827 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
40
41
42
<!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>
<p>El Barto was here!</p>
<hr/>
<ol>
<li> Whatever, CA</li>
<li>Fake City, USA (12234)</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 (12,454,454)</li>
<li>Fire-city (12345)</li>
<li>Calgary (13,555,345)</li>
<li>Burlington 250,000</li>D
<li>Heaven (1) </li>
<li>Las Vegas 1,000,000</li>
</ol>
</body>
</html>