-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
174 lines (144 loc) · 3.39 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
163
164
165
166
167
168
169
170
171
172
173
174
<html>
<head>
<title>Mutual Beef - Jazzy Tunes, New Tunes, Old Tunes, and More!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
/* Body */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
/* Header */
header {
background-color: #ff7f50;
color: #fff;
padding: 1rem;
font-size: 2rem;
text-align: center;
}
/* Banner */
.banner {
background-color: #ffbf00;
color: #fff;
padding: 0.5rem;
font-size: 1.2rem;
text-align: center;
animation: pulse 1s ease-in-out infinite;
}
/* Player */
.player {
margin: 0 auto;
max-width: 800px;
background-color: #ff7f50;
color: #fff;
padding: 0.5rem;
text-align: center;
/*border: 5px #ffbf00 solid;*/
}
.player p {
margin: 0;
font-size: 1rem;
}
.player audio {
width: 100%;
margin-top: 0.5rem;
}
/* Logo */
.logo {
display: block;
margin: 1rem auto;
max-width: 200px;
}
/* Main content */
main {
max-width: 800px;
margin: 0 auto;
padding: 1rem;
text-align: center;
}
main h1 {
font-size: 3rem;
margin-top: 0rem;
color: #ff7f50;
}
main p {
font-size: 1.2rem;
margin-top: 1rem;
}
main h2 {
font-size: 2rem;
margin-top: 2rem;
color: #ff7f50;
}
main img.photo {
display: block;
margin: 2rem auto;
max-width: 500px;
}
main ul {
margin-top: 1rem;
list-style: none;
padding: 0;
}
main li {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
/* Footer */
footer {
background-color: #ff7f50;
color: #fff;
padding: 1rem;
text-align: center;
font-size: 0.8rem;
}
footer p {
margin: 0;
}
/* Animations */
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<header>Mutual Beef - Groovy and Improvisational Music from Boston</header>
<div class="banner">Check out our new album "Groovin' at the Wholesale Food Terminal"!</div>
<img class="logo" src="beef.jpg" alt="Band logo in blue and orange">
<main>
<h1>Welcome to Mutual Beef</h1>
<div class="player">
<p>Click the "play" button to hear our music!</p>
<audio controls autoplay>
<source src="https://somervilleartscouncil.org/sacfiles/song_for_my_father.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
</div>
<p>Mutual Beef is a Boston-based jazz band that specializes in groovy, improvisational tunes. We're all about butchering the classics and cooking up fresh new tunes. Our unique sound is a cut above the rest! It is sure to leave you sizzling with excitement and have you moo-ving and grooving all night long.</p>
<p>Whether you're a carnivore, herbivore, or anything in between, we've got something for everyone. So come on down and let us give you a musical feast that you won't forget. We guarantee it'll be a rare and well-done experience all at once!</p>
<h2>Who we are</h2>
<img class="photo" src="band.jpeg" alt="Band Photo">
<ul>
<li>P. "The Beef Baron" Jan-Stas - Sax</li>
<li>E. "The Meat Maestro" Peterson - Drums</li>
<li>M. "The Funky Butcher" Dardet - Bass</li>
<li>J. "The Sirloin Siren" Chang - Keys</li>
</ul>
</main>
<footer>
<p>© 2023 Mutual Beef. All rights reserved.</p>
<p>Website design by ChatGPT.</p>
</footer>
</body>
</html>