-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcabinfever.html
35 lines (34 loc) · 1.12 KB
/
cabinfever.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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="icon" href="favicon.ico" type="image/x-icon"> -->
<title>Cabin Fever | HOME</title>
<link rel="stylesheet" href="css/fever.css">
</head>
<body>
<nav>
<img id="logo" src="media/cf-logo.webp" alt="Cabin Fever logo" class="logo">
<div class="align-left">
<span class="playwrite-cu-title white" id="typed">Cabin Fever</span><span id="cursor"></span>
</div>
<script src="js/typer-cf.js"></script>
</nav>
<main>
<div id="content">
<div id="band-container">
<img class="img-center" src="media/band.webp" alt="Cabin Fever performing live">
</div>
<div id="albums-container">
<h2 class="title title-pad-left">OUR MUSIC</h2>
<p id="js-warning-albums">Please enable javascript to view this content</p>
<table id="albums-table">
<!-- Populated via albums-cf.js -->
</table>
</div>
</div>
</main>
<script src="js/albums-cf.js"></script>
</body>
</html>