Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 53 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,59 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />

<link rel="stylesheet" href="styleTribute.css" />
<title>Tribute Page</title>
</head>
<body>

<header>
<h1>Tribute to London</h1>
</header>
<main>
<section>
<h2>History</h2>
<p>
London s the capital and largest city of both England and the United
Kingdom, with a population of around 8.8 million,[1] and its
metropolitan area is the largest in Western Europe, with a population
of 14.9 million.[9][note 1] It stands on the River Thames in
south-east England at the head of a 50-mile (80 km) estuary down to
the North Sea and has been a major settlement for nearly two
millennia.
</p>
</section>
<section>
<h2>Landmarks</h2>
<p>
London has four World Heritage Sites: the Tower of London; Kew
Gardens; the combined Palace of Westminster, Westminster Abbey, and St
Margaret's Church; and the historic settlement in Greenwich, where the
Royal Observatory, Greenwich, defines the prime meridian (0°
longitude) and Greenwich Mean Time.
</p>
</section>
<section>
<h2>Culture</h2>
<p>
London's diverse cultures encompass over 300 languages.[26] The 2023
population of Greater London of just under 10 million[27] made it
Europe's third-most populous city,[28] accounting for 13.4% of the
population of the United Kingdom[29] and over 16% of the population of
England. The Greater London Built-up Area is the fourth-most populous
in Europe, with about 9.8 million inhabitants at the 2011
census.[30][31] The London metropolitan area is the third-most
populous in Europe, with about 14 million inhabitants in 2016,[note
4][32][33] granting London the status of a megacity.
</p>
</section>
</main>
<footer>
<p>
Discover more about London's incredible history and cultural offerings
on its
<a href="https://en.wikipedia.org/wiki/London#cite_note-11"
>Wikipedia page</a
>.
</p>
</footer>
</body>
</html>
</html>
41 changes: 41 additions & 0 deletions styleTribute.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
body {
font-family: Segoe UI, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #e2e2e2;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #007ba7;
color: white;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
}
main {
padding: 20px;
}
section {
margin-bottom: 20px;
}
h2 {
color: #007ba7;
}
p {
font-size: 16px;
line-height: 1.5;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
}
a {
color: #ffd700;
}
a:hover {
text-decoration: underline;
}