-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (61 loc) · 2.67 KB
/
index.html
File metadata and controls
92 lines (61 loc) · 2.67 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Brother Wolves | the band</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Berkshire+Swash|Fredoka+One|Comfortaa:400,700,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Brother Wolves</h1>
<h2>the band</h2>
</a>
<nav>
<ul>
<li><a href="index.html" class="selected">Home</a></li>
<li><a href="music.html">Music</a></li>
<li><a href="shows.html">Shows</a></li>
<li><a href="merch.html">Merch</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section>
<ul id="home">
<li><img alt="Brother Wolves" src="http://s3.amazonaws.com/content.sitezoogle.com/u/148057/c431721c4c5b53252b3ba4e98ef069c00d60a1a8/original/bw-logo.png?1431715713" onclick="javascript:AlertIt();"></li>
<li><a href="img/BrotherWolvesVan.jpg">
<img src="img/BrotherWolvesVan.jpg" alt="Band Photo"></a>
</li>
</ul>
</section>
<section>
<p>
Our Story
Formed in 2013, Brother Wolves howl from the banks of the muddy Ohio in Louisville, Ky. Their sound is fronted with introspective lyrics and haunting vocals by Wilfred E. Sieg III. Nathan Fessel adds catchy guitar licks that provide a foundation for bassist Scott Harrett to fill with melodic rhythms and grooves. Lamar Cornett fills the voids with syncopated beats and mountains of atmosphere. They are currently putting the finishing touches on their first album, booking shows in Louisville and throughout the Midwest.
</p>
</section>
<a href="img/BWLogoBlack.jpg" alt="Logo">
<img src="img/BWLogoBlack.jpg" alt="Logo" id="home">
</div>
<div>
<footer id="footer">
<a href="http://facebook.com/brotherwolveshowl"><img src="img/facebook-logo.png" alt="Facebook Logo" class="socialIcon"></a>
<a href="http://twitter.com/brotherwolves"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="socialIcon"></a>
<a href="http://instagram.com/brotherwolves"><img src="img/instagram.png" alt="Instagram Logo" class="socialIcon"></a>
<p>© 2015 Brother Wolves</p>
</footer>
</div>
<script type="text/javascript">
function AlertIt() {
var answer = confirm ("Click on OK if you want to visit our other website.")
if (answer)
window.open("http://brotherwolvesmusic.com");
}
</script>
</body>
</html>