-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmunich.html
138 lines (138 loc) · 3.96 KB
/
munich.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Information about Munich</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<header>
<h1>Munich</h1>
</header>
<main>
<section>
<h2>Description</h2>
<p>
Munich is the capital and most populous city of the Free State of
Bavaria. With a population of 1,558,395 inhabitants as of 31 July
2020, it is the third-largest city in Germany, after Berlin and
Hamburg. Straddling the banks of the River Isar north of the Alps,
Munich is the seat of the Bavarian administrative region of Upper
Bavaria.
</p>
</section>
<section>
<h2>Information</h2>
<p>
Today, Munich is a global centre of science, technology, finance,
innovation, business, and tourism. Munich enjoys a very high standard
and quality of living, reaching first in Germany and third worldwide
according to the 2018 Mercer survey. Munich is consistently ranked as
one of the most expensive cities in Germany in terms of real estate
prices and rental costs.
</p>
</section>
<section>
<h2>Demographic Data</h2>
<p>
In 2021, 28.8 percent of Munich's residents were foreigners, and
another 17.7 percent were German citizens with a migration background
from a foreign country. Munich's economy is based on high tech,
automobiles, and the service sector, as well as IT, biotechnology,
engineering, and electronics.
</p>
</section>
<section>
<h2>Additional Information</h2>
<table>
<tr>
<th>Country</th>
<td>Germany</td>
</tr>
<tr>
<th>State</th>
<td>Bavaria</td>
</tr>
<tr>
<th>Admin. region</th>
<td>Upper Bavaria</td>
</tr>
<tr>
<th>District</th>
<td>Urban district</td>
</tr>
<tr>
<th>First mentioned</th>
<td>1158</td>
</tr>
<tr>
<th>Subdivisions</th>
<td>25 boroughs</td>
</tr>
<tr>
<th>Latitude</th>
<td>48.1351° N</td>
</tr>
<tr>
<th>Longitude</th>
<td>11.5820° E</td>
</tr>
<tr>
<th>Government</th>
<td>
Lord mayor (2020–26): Dieter Reiter (SPD)<br />
Governing parties: Greens / SPD
</td>
</tr>
<tr>
<th>Area</th>
<td>City: 310.71 km2 (119.97 sq mi)</td>
</tr>
<tr>
<th>Elevation</th>
<td>520 m (1,710 ft)</td>
</tr>
<tr>
<th>Population (2021-12-31)</th>
<td>
City: 1,487,708<br />
Density: 4,800/km2 (12,000/sq mi)<br />
Urban: 2,606,021<br />
Metro: 5,991,144[1]
</td>
</tr>
<tr>
<th>Time zone</th>
<td>
UTC+01:00 (CET)<br />
Summer (DST): UTC+02:00 (CEST)
</td>
</tr>
<tr>
<th>Postal codes</th>
<td>80331–81929</td>
</tr>
<tr>
<th>Dialling codes</th>
<td>089</td>
</tr>
<tr>
<th>Vehicle registration</th>
<td>M</td>
</tr>
<tr>
<th>Website</th>
<td><a href="https://www.muenchen.de">stadt.muenchen.de</a></td>
</tr>
</table>
</section>
<section>
<h2>Return to Index</h2>
<p><a href="index.html">Go back to the index page</a></p>
</section>
</main>
<footer>
<p>© 2023</p>
</footer>
</body>
</html>