-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
162 lines (141 loc) · 5.33 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html;charset=UTF-8'>
<title>Color Me Once</title>
<meta name='robots' content='all'>
<link href='style.css' rel='stylesheet' type='text/css'>
<!--[if IE]>
<link rel='stylesheet' type='text/css' href='all-ie-only.css' />
<![endif]-->
<script src='http://code.jquery.com/jquery-latest.js'></script>
</head>
<body>
<div class='everythang'>
<header>
<div id='cover'>
<img id='bg' src='images/main.jpg' alt='Color Me Once'>
</div>
<h1 id='logo'>Color Me Once</h1>
</header>
<div id='main-nav'>
<div class='wrap'>
<a href='#shows' class='scroll'>shows</a>
<a href='#music' class='scroll'>music</a>
<a href='#about' class='scroll'>about</a>
<a href='#contact' class='scroll'>contact</a>
</div>
</div>
<script>
jQuery(document).ready(function($) {
$('.scroll').click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
});
});
</script>
<div class='clear'>
</div>
<h1 id='shows'>upcoming shows</h1>
<div id='shows-section'>
<div id='col1'>
<ul>
<li>Friday, May 25</li>
<li>Wednesday, May 30</li>
<li>Friday, June 22</li>
</ul>
</div>
<div id='col2'>
<ul>
<li>Madison, WI</li>
<li>Chicago, IL</li>
<li>Chicago, IL</li>
</ul>
</div>
<div id='col3'>
<ul>
<li>Redamte Coffee House</li>
<li>Subterranean</li>
<li>The Elbo Room</li>
</ul>
</div>
</div>
<div class='clear'>
</div>
<h1 id='music'>featured music</h1>
<div id='music-section'>
<div id='music-col1'>
<ul>
<li>Rollercoaster</li>
<li>Juliet</li>
<li>Sol</li>
</ul>
</div>
<div id='music-col2'>
<ul>
<li>
<audio controls='controls'>
<source src="rollercoaster.ogg" type="audio/ogg" />
<source src="rollercoaster.mp3" type="audio/mpeg" />
Your browser does not support the audio element.</audio></li>
<li>
<audio controls='controls'>
<source src="kryptonite.ogg" type="audio/ogg" />
<source src="kryptonite.mp3" type="audio/mpeg" />
Your browser does not support the audio element.</audio></li>
<li>
<audio controls='controls'>
<source src="sol.ogg" type="audio/ogg" />
<source src="sol.mp3" type="audio/mpeg" />
Your browser does not support the audio element.</audio></li>
</ul>
</div>
</div>
<div id='us-wrapper'>
<img id='us' src='images/us.png' alt='Kelsey and Johnice'>
</div>
<h1 id='about'>about us</h1>
<div id='about-section' class='wrap'>
<p><span class='bold'>Color Me Once</span> is an acoustic / soul trio based out of Madison, WI. Their unique and heartwarming sound both silences and illuminates bars. From their melodic guitar parts to their soulful lyrics, Johnice Miller, Kelsey Nelson, and Jenna Joanis complement each other almost perfectly.</p>
<br/>
<p>Johnice and Kelsey released their first album, Memoirs EP, in March 2012 are eager and ready to make a career our of what they love. <span class='bold'>Color Me Once</span> is a young band that has great potential and the sky is the limit!</p>
</div>
<div class='clear'>
</div>
<h1 id="contact">contact us</h1>
<div id="contact-section" class='wrap'>
<p>We would love to hear from you! Email us at <span><a href="mailto:[email protected]?Subject=Color%20Me%20Once">colormeonceband@gmail.com</a></span> to leave us a message. For booking inquiries, please include your name and phone number.</p>
</div>
<footer>
<div id='footer-wrapper'>
<a href='http://www.facebook.com/ColorMeOnceBand' target='_blank'>
<p class='social' id='facebook'>f</p>
</a>
<div id='copyright'>
<p>Copyright © 2012 Color Me Once. All Rights Reserved.</p>
<p>Music Management by <a href='http://www.facebook.com/pages/Musician-Management-by-Rae/102059906567501' target='_blank'>Rae</a>. Design by <a href='http://acacheung.com/' target='_blank'>Amanda Cheung</a>. Photography by <a href='http://www.facebook.com/pages/RM-Young-Photography/155015644564591' target='_blank'>R. M. Young</a>.</p>
</div>
<a href='http://www.reverbnation.com/Colormeonce' target='_blank'>
<p class='social' id='reverb'>s</p>
</a>
</div>
<script>
$('#facebook').fadeTo('fast', 0.5, function() {
$('#facebook').mouseover(function() {
$('#facebook').fadeTo('fast', 1.0, function() {
$('#facebook').mouseout(function() {
$('#facebook').fadeTo('fast', 0.5, function() {
}); }); }); }); });
$('#reverb').fadeTo('fast', 0.5, function() {
$('#reverb').mouseover(function() {
$('#reverb').fadeTo('fast', 1.0, function() {
$('#reverb').mouseout(function() {
$('#reverb').fadeTo('fast', 0.5, function() {
}); }); }); }); });
</script>
</footer>
<div class='white'>
</div>
</div>
</body>
</html>