-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (130 loc) · 4.67 KB
/
index.html
File metadata and controls
130 lines (130 loc) · 4.67 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Five Fun Facts</title>
</head>
<body>
<header>
<h1>Five Fun Facts</h1>
</header>
<main>
<section class="background-info">
<h2>GitHub Practice Workshop</h2>
<p>
In this workshop you will be using GitHub to explore a project's
source code and learning how to investigate it.
</p>
</section>
<section class="content">
<div>
<h3>Facts About Glasgow</h3>
<ul>
<li>It's a UNESCO City of Music</li>
<li>It has the third-oldest subway system in the world</li>
<li>The ultrasound was invented here in 1956</li>
<li>Oasis got their big break after playing here in 1993</li>
<li>
There is <em>always</em> a traffic cone on the Duke of Wellington
statue!
</li>
</ul>
</div>
<img
src="https://c.files.bbci.co.uk/16F94/production/_130100149_pa-20938626-1.jpg"
/>
</section>
<section class="content inverted">
<div>
<h3>Facts About Manchester</h3>
<ul>
<li>Home of the World Pie-Eating Championships</li>
<li>The first passenger railway train set of from here in 1830</li>
<li>
The first computer with stored program and memory is located here
</li>
<li>The Suffragette movement started here</li>
<li>The vegetarian movement started here in 1847</li>
</ul>
</div>
<img
src="hppts://media.istockphoto.com/id/1492724975/photo/manchester-tram.jpg?s=612x612&w=0&k=20&c=mZY9zrqVe9dS8W-pBlrsJAr0-jZdVg4ThbEiRI5kZeQ="
alt="A Manchester tram"
/>
</section>
<section class="content">
<div>
<h3>Facts About Birmingham</h3>
<ul>
<li>
There are more canals here (35 miles) than in Venice (26 miles)
</li>
<li>The world's first football league started here</li>
<li>The postage stamp was invented here in 1839</li>
<li>Home to the 5th busiest McDonald's in the world</li>
<li>The board game Cluedo was invented here in 1943</li>
</ul>
</div>
<img
src="https://cdn.pixabay.com/photo/2017/08/24/07/36/birmingham-2675655_1280.jpg"
alt="Canal boats in Birmingham at night"
/>
</section>
<section class="content inverted">
<div>
<h3>Facts About London</h3>
<ul>
<li>
The
<a
href="https://www.visitlondon.com/things-to-do/place/45615751-london-mithraeum?_gl=1*ynfhcx*_up*MQ..*_ga*MTAxOTU2ODI2My4xNzU4ODEzNzgy*_ga_BDFPSHTGM0*czE3NTg4MTM3ODEkbzEkZzAkdDE3NTg4MTM3ODEkajYwJGwwJGgw"
target="_blank"
>oldest building in London</a
>
is almost 1800 years old!
</li>
<li>Holds the record for most Olympic Games hosted by a city</li>
<li>The shortest street is only 36ft long</li>
<li>
Has so many trees that it meets the UN's
<a href="https://www.un-redd.org/glossary/forest"
>definition of a forest</a
>
</li>
</ul>
</div>
<img
src="https://img.freepik.com/free-photo/view-london-skyline-by-night_268835-1398.jpg"
alt="London skyline at night"
/>
</section>
<section class="content">
<div>
<h3>Facts About Cape Town</h3>
<ul>
<li>
Winemaking in the region dates back to 1659 - the oldest vineyards
outside Europe!
</li>
<li>
Hosted the first FIFA World Cup match held in Africa in 2010
</li>
<li>Home to a colony of endangered penguins</li>
<li>
Has 7000 species of plant which aren't found anywhere else in the
world
</li>
<li>The world's first heart transplant took place here in 1967</li>
</ul>
</div>
<img
src="https://plus.unsplash.com/premium_photo-1697730061063-ad499e343f26?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8Y2FwZSUyMHRvd258ZW58MHx8MHx8fDA%3D"
alt="Arial view of Cape Town taken from above the ocean"
/>
</section>
</main>
<footer></footer>
</body>
</html>