-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.54 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rummelbude</title>
<link rel="icon" type="image/x-icon" href="images/logo/logo-trans-small.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="resources/footer/style.css">
<script src="code.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="header">
<img id="logo" src="images/logo/logo-trans.png" alt="logo">
<h1 id="headertext">Rummelbude</h1>
</div>
<div class="contentdiv">
<h2 class="texttop">Navigation</h2>
<a href="musik"><button>Musik</button></a><a href="diskografie"><button>Diskografie</button></a><a href="support"><button>Support</button></a><a href="links"><button>Links</button></a>
</div>
<div class="contentdiv">
<h2 class="texttop">Über mich</h2>
<p class="textbottom">Ich bin Rummelbude, ein leidenschaftlicher Einzelkünstler, der seit 2019 Musik für die Publikation produziert.</p>
</div>
<div class="contentdiv" id="albumsContainer">
<h2 class="texttop">Neue Musik</h2>
<!--Clickable album covers will be dynamically added here-->
</div>
<script>
fetch('resources/footer/index.html')
.then(response => response.text())
.then(data => document.querySelector('body').innerHTML += data);
</script>
</body>
</html>