-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmahler.html
41 lines (41 loc) · 1.46 KB
/
mahler.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
<html>
<head>
<title>Gustav Mahler Fan Club</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Gustav Mahler Fan Club</h1>
</header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>About</h2>
<p>Welcome to the Gustav Mahler Fan Club! We are a community of fans dedicated to the life and music of the great composer Gustav Mahler.</p>
</section>
<section id="resources">
<h2>Resources</h2>
<p>Here are some resources where you can learn more about Gustav Mahler and his music:</p>
<ul>
<li><a href="https://www.gustav-mahler.net/">Gustav Mahler website</a></li>
<li><a href="https://www.mahler-foundation.org/">Gustav Mahler Foundation</a></li>
<li><a href="https://www.youtube.com/watch?v=Qhx2uUw4SdE">Gustav Mahler: A Life in Music documentary</a></li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>If you have any questions or want to get in touch with other members of the Gustav Mahler Fan Club, please don't hesitate to contact us at:</p>
<p>[email protected]</p>
</section>
</main>
<footer>
<p>Copyright 2021 Gustav Mahler Fan Club</p>
</footer>
</body>
</html>