-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreleases.html
44 lines (44 loc) · 1.38 KB
/
releases.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BOKKERIJDERS - RELEASES</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="shows.html">SHOWS</a></li>
<li><a href="releases.html">RELEASES</a></li>
<li><a href="https://bokkerijders.bigcartel.com/">MERCH</a></li>
<li><a href="contact.html">CONTACT/BOOKING</a></li>
</ul>
</nav>
<img src="images/logo.png" alt="Bokkerijders logo" class="logo-image">
</header>
<main id="releases">
<div class="releases-container">
<div class="release">
<a href="https://babylondoomcultrecords.bandcamp.com/album/bokkerijders">
<img src="images/R-24901280-1667168354-7312.jpg" alt="Album 1" class="album-art">
<p class="album-title">DEMO</p>
</a>
</div>
<div class="release">
<a href="https://babylondoomcultrecords.bandcamp.com/album/silver-dust-and-swords-of-gold">
<img src="images/SDSOG.png" alt="Album 2" class="album-art">
<p class="album-title">Silver Dust and Swords of Gold</p>
</a>
</div>
</div>
</main>
<footer>
<p>© 2024 BOKKERIJDERS. NEE.</p>
</footer>
<script src="script.js"></script>
</body>
</html>