-
Notifications
You must be signed in to change notification settings - Fork 6
/
index-7.html
291 lines (247 loc) · 6.27 KB
/
index-7.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!DOCTYPE html>
<html>
<head>
<title>Electronic Music: A short history</title>
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #1d1818;
line-height: 1.5;
}
nav, main > section {
overflow: auto;
}
main > section {
min-height: 100vh;
}
/* Style the nav bar */
#nav {
justify-content: space-between;
align-items: baseline;
padding: 1em;
background-color: #1d1818;
color: #eee;
display: flex;
}
nav h1, ul {
margin: 0
}
nav a {
text-decoration: none;
color: #eee;
}
nav ul {
display: flex;
list-style: none;
}
nav ul a {
/* give the links a little space */
padding: 1em;
color: tomato;
}
nav ul a:hover {
color: pink;
}
#raymond-scott {
background-color: #26B63E;
background-image: url(images/scott-1.jpg);
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
font-size: 4em;
color: #fff;
}
#raymond-scott > div {
position: relative;
left: -120px;
top: 120px;
}
#raymond-scott h2, #raymond-scott p {
margin: 0;
text-shadow: 0 0 20px #000000;
}
/* TO DO: Create some cards in this section */
#robert-moog {
background-color: #26323f;
}
#robert-moog ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
#robert-moog > h2 {
margin: 1em;
font-size: 3em;
text-align: center;
color: #eee;
}
.card {
width: 400px;
margin: 1em;
background-color: #eee;
box-shadow: 0 0 22px rgba(0, 0, 0, 0.44);
}
.card img {
width: 100%;
}
.card h3 {
font-size: 2em;
}
.card h3, .card p {
margin: 1rem;
}
#wendy-carlos {
background-color: #5856D6;
background-image: url(images/carlos-0.jpg);
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
#wendy-carlos > div {
background-color:rgba(255, 255, 255, 0.65);
padding: 2em;
width: 75%;
max-width: 700px;
}
#wendy-carlos h2 {
font-size: 4em;
margin: 0 0 1rem 0;
text-align: center;
}
/* INDEX 7 TO DO: Style this This time arrange two elements side by side and set the proportional width of each.
Set the background and flex. Check README for more details.*/
#suzanne-ciani {
background-color: #461c3b;
display: flex;
color: #fff;
background-image: url(images/sound-texture.jpg);
background-size: cover;
}
#suzanne-ciani > div {
display: flex;
justify-content: center;
width: 75%;
margin: auto;
}
#suzanne-ciani h2, #suzanne-ciani p {
margin: 0 0 1rem 0;
}
#suzanne-ciani h2 {
font-size: 2em;
}
#suzanne-ciani > div > div:nth-child(1) {
flex: 3;
margin: 0 2em 0 0;
}
#suzanne-ciani > div > div:nth-child(2) {
flex: 2;
}
#suzanne-ciani > div img {
width: 100%;
box-shadow:0 0 22px rgba(0, 0, 0, 0.44);
}
#contact {
background-color: #FF9500;
}
</style>
</head>
<body>
<main>
<nav id="nav">
<h1><a href="#">Electronic Music</a></h1>
<ul>
<li><a href="#raymond-scott">Raymond Scott</a></li>
<li><a href="#robert-moog">Robert Moog</a></li>
<li><a href="#wendy-carlos">Wendy Carlos</a></li>
<li><a href="#suzanne-ciani">Suzanne Ciani</a></li>
</ul>
</nav>
<section id="raymond-scott">
<div>
<h2>Raymond Scott</h2>
<p>Some Text...</p>
</div>
</section>
<section id="robert-moog">
<h2>Robert Moog</h2>
<ul>
<li class="card">
<img src="images/moog-0.jpg">
<h3>Bob Moog</h3>
<p>The inovator...</p>
</li>
<li class="card">
<img src="images/moog-1.jpg">
<h3>Moog 100 series</h3>
<p>Started the synthesis revolution...</p>
</li>
<li class="card">
<img src="images/moog-2.jpg">
<h3>The Artists</h3>
<p>Used by countless artists...</p>
</li>
</ul>
</section>
<section id="wendy-carlos">
<div>
<h2>Wendy Carlos</h2>
<p>Wendy Carlos
Birth name Walter Carlos
Born November 14, 1939 (age 80)
Pawtucket, Rhode Island, U.S.
Genres Electronic, classical, ambient, jazz, synthpop
Occupation(s) Musician, composer
Instruments Synthesizer, keyboards, vocoder
Years active 1964–2005
Labels Columbia Masterworks, CBS, Audion, Telarc, East Side Digital
Website wendycarlos.com
Wendy Carlos (born Walter Carlos; November 14, 1939) is an American musician and composer best known for her electronic
music and film scores. Born and raised in Rhode Island, Carlos studied physics and music at Brown University before
moving to New York City in 1962 to study music composition at Columbia University. Studying and working with various
electronic musicians and technicians at the city's Columbia-Princeton Electronic Music Center, she helped the
development of the Moog synthesizer, the first commercially available keyboard instrument created by Robert Moog</p>
</div>
</section>
<section id="suzanne-ciani">
<div>
<div>
<h2>Suzanne Ciani</h2>
<p>Suzanne Ciani (born June 4, 1946) is an American musician, sound designer, composer, and record label executive who
found early success in the 1970s with her innovative electronic music and sound effects for films and television
commercials. Her career has included works with quadraphonic sound. She has been nominated for a Grammy Award for Best
New Age Album five times. Her success with electronic music has her dubbed "Diva of the Diode" and "America's first
female synth hero".</p>
</div>
<div>
<img src="images/ciani-2.jpg">
</div>
</div>
<figure>
<img>
</figure>
</section>
<footer id="contact">
<form>
<label>
Name
<input type="text">
</label>
<label>
Email
<input type="email">
</label>
<label>
Message
<textarea></textarea>
</label>
<button type="submit">Send</button>
</form>
</footer>
</main>
</body>
</html>