-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
55 lines (55 loc) · 1.77 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Jay Skript and the Domsters</title>
<link rel="stylesheet" href="styles/basic.css">
</head>
<body>
<header>
<img src="images/logo.png" alt="Jay Skript and the Domsters">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="photos.html">Photos</a></li>
<li><a href="live.html">Live</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<article>
<h1>About the band</h1>
<nav>
<ul>
<li><a href="#jay">Jay Skript</a></li>
<li><a href="#domsters">The Domsters</a></li>
</ul>
</nav>
<section id="jay">
<h2>Jay Skript</h2>
<p>Jay Skript is going to rock your world!</p>
<p>
Together with this compatriots the Domsters,
Jay is set for world domination. Just you wait and see.
</p>
<p>
Jay Skript has been on the scene since the mid 1990s.
His talent hasn't always been recognized or fully appreciated.
In the early days, he was often unfavorably compared to bigger,
similarly named artists. That's all in the past now.
</p>
</section>
<section id="domsters">
<h2>The Domsters</h2>
<p>
The Domsters have been around, in one form or another,
for almost as long. It's only in the past few years that the Domsters
have settled down to their current, stable lineup.
Now they're a rock-solid bunch: methodical and dependable.
</p>
</section>
</article>
<script src="js/global.js" type="text/javascript"></script>
</body>
</html>