forked from TheRealDanilson/HornWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalumni.html
More file actions
971 lines (891 loc) · 43.6 KB
/
Copy pathalumni.html
File metadata and controls
971 lines (891 loc) · 43.6 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
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Alumni</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Amatic+SC">
<link rel="stylesheet" href="styles.css?v=2">
<!-- for fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fugaz+One&family=Knewave&family=Patrick+Hand&family=Rock+Salt&display=swap" rel="stylesheet">
</head>
<body vlink="#551A8B" text="#000000" bgcolor="#B31B1B" alink="#EE0000" link="#0000EE" style="margin-right:100px">
<!-- Navbar (sit on top) -->
<div w3-include-html="nav.html"></div>
<header class="bgimg w3-display-container">
<div class="w3-display-center w3-center">
<h1 style="position:relative; top:.9em">
<font color="#ffffff"><span class="" style="font-size: 3em; top: 10%; text-shadow: -1px 0px
black, 0px 1px black, 1px 0px black, 0px -1px black;
width: 803px; height: 320px;">Alumni</span></font>
</h1>
</div>
</header>
<!-- The Modal -->
<div w3-include-html="modal.html"></div>
<!-- Begin bio card. Any bio card should look like this exactly, with specific details about a person obviously altered. Most importantly, loadBio("daniel") and id="daniel" absolutely need to be changed with each person
For instance, if you were writing a bio card for Waluigi, you would do something like this:
<div class="column">
<div class="card w3-padding" onclick='loadBio("waluigi")' style="background-color:#fbfbff">
<div class="container w3-center" id="waluigi">
<h1>Daniel Cardenas</h1>
<img src="profiles/waluigi.jpg" alt="Waluigi" style="width:100%">
<h2>Hunk</h2>
<h2>Class: 2021</h2>
<h2>Hometown: Mushroom Kingdom?</h2>
<h2>College: School of Hard Waa's</h2>
<h2>Major: Waaology</h2>
<bio>Waluigi loves to waa. He is the guardian diety of the horns.</bio>
</div>
</div>
</div>
Here is empty template for copying and pasting:
<div class="column">
<div class="card w3-padding" onclick='loadBio("")' style="background-color:#fbfbff">
<div class="container w3-center" id="">
<h1></h1>
<img src="profiles/.jpg" alt="" style="width:100%">
<h2></h2>
<h2>Class: </h2>
<h2>Hometown: </h2>
<h2>College: </h2>
<h2>Major:</h2>
<bio></bio>
</div>
</div>
</div>
--->
<div class="card-container">
<div class="card w3-padding" onclick='loadBio("pinard")'>
<div class="container w3-center" id="pinard">
<h1>Ryan Pinard</h1>
<img src="profiles/pinard.JPG" alt="Pinard" style="width:100%" class="w3-image">
<h2>2022 Equipment Chair<br>2023 Horn Section Leader<br>
Fall 2024 Pep Conductor</h2>
<h2>Class: 2025</h2>
<h2>Hometown: Copley, OH</h2>
<h2>College: Arts & Sciences</h2>
<h2>Major: Chemistry</h2>
<bio>Hi! I'm Ryan, a senior in the horn section. I'm super excited for
my final season of marching band and to conduct the pep band this
semester!</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("kesselly")'>
<div class="container w3-center" id="kesselly">
<h1>Beyan Kesselly</h1>
<img src="profiles/kesselly.jpeg" alt="" style="width:100%">
<h2>2024 DEI Committee<br>2023 Head Manager<br>2022 Horn Section Leader</h2>
<h2>Class: 2024</h2>
<h2>Hometown: Newark, DE</h2>
<h2>College: CALS</h2>
<h2>Major: Biological Sciences</h2>
<bio>I am a horny trumpet from the greastest state ever. I love Waluigi and hate pickles but love pickling
also what's wrong with Beyan?</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("herzog")'>
<div class="container w3-center" id="herzog">
<h1>Caroline Herzog</h1>
<img src="profiles/herzog.JPG" alt="Caroline" style="width:100%" class="w3-image">
<h2>2021 Section Leader</h2>
<h2>Class: 2023</h2>
<h2>Hometown: Wakefield, Massachusetts</h2>
<h2>College: Engineering</h2>
<h2>Major: Environmental Engineering</h2>
<bio>Outside of playing horn, Caroline loves camping throughout New England, hanging out with her pets
(especially her dove named Mouse!), and playing viola, flute, and trumpet. Fun fact: she picked up horn
freshman year of high school since her band director didn't allow flutes in marching band!</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("desir")'>
<div class="container w3-center" id="desir">
<h1>Chris Desir</h1>
<img src="profiles/desir.jpg" alt="Chris" style="width:100%" class="w3-image">
<h2>Proud member of rank star 🤩 & lovr of BOBA 😍</h2>
<h2>Class: 2023</h2>
<h2>Hometown: I guess I'm from (Dover) Delaware, but if you ask me in person I'll say Florida</h2>
<h2>College: ENGINEERING BABYYYY</h2>
<h2>Major: Computer Science (I hold knowledge of the fifth loopy question)</h2>
<bio>EEEEEEE90902139021saknkjdsanjknjk====12312@@#&*#*&^*&snsabquhhjbchwqgyuewnvsmd</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("faber")'>
<div class="container w3-center" id="faber">
<h1>Olive Faber</h1>
<img src="profiles/faber.jpeg" alt="Scott" style="width:100%" class="w3-image">
<h2>2020 Equipment Chair<br>2021 & 2022 Section Leader<br>Spring 2023 Pep Conductor</h2>
<h2>Class: 2023</h2>
<h2>Hometown: Livingston, NJ</h2>
<h2>College: Engineering</h2>
<h2>Major: Electrical and Computer Engineering</h2>
<bio>Olive is a French horn player, but she played trombone in the Cornell Symphony Orchestra. Known for
wearing a leaf in her hair at home games, Olive loves to scream really high notes -- sometimes even through
her horn!</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("mendoza")'>
<div class="container w3-center" id="mendoza">
<h1>Max Mendoza</h1>
<img src="profiles/mendoza.jpeg" alt="Max" style="width:100%" class="w3-image">
<h2>2019 Rank Leader</h2>
<h2>Class: 2022</h2>
<h2>Hometown: Anaheim, California</h2>
<h2>College: Engineering</h2>
<h2>Major: Mechanical Engineering</h2>
<h2>Still looking for a drummer for my band, hmu if you can swing sticks rhythmically</h2>
<bio>I like music, basketball, and taking long walks on the beach. I think I’m a stereotypical Californian,
bruh.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("uran")'>
<div class="container w3-center" id="uran">
<h1>Della Keahna Uran</h1>
<img src="profiles/uran.jpeg" alt="Della" style="width:70%" class="w3-image">
<h2>Class: 2022</h2>
<h2>Hometown: Hayward, WI</h2>
<h2>College: CALS</h2>
<h2>Major: Environment and Sustainability</h2>
<bio>Della is a midwestern rez baby turned musician turned model turned cowgirl. A teen mom of three nieces
and two dogs, she is a professional multitasker. She is a former cheerleader and current archer. Do not
accept her challenge to a plank-off.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("rucker")'>
<div class="container w3-center" id="rucker">
<h1>Carrie Rucker</h1>
<img src="profiles/rucker.jpg" alt="Carrie" style="width:100%" class="w3-image">
<h2>2019 & 2020 Co-Section Leader<br>2019 Pep Band Historian<br>2018 Pep Band Chair<br>2018 Uniform Chair
</h2>
<h2>Class: ZOZI</h2>
<h2>Hometown: Warren, NJ</h2>
<h2>College: Engineering</h2>
<h2>Major: Operations Research and Information Engineering Engineering</h2>
<bio>Bios are hard so instead of being original here are some highlights from my horn bio emails for the last
three years:<br><br>
"I really like to crochet"<br>
"I ate a mealworm during bio lab" (would do this again given sufficient motivation)<br> <!-- Lmao wth -->
"I bought 10 NJ flags on amazon<br>
"I have very strong opinions on Appel vs. RPCC Sunday brunch"<br>
"I still don't understand how the TCAT system works" (have never taken a TCAT alone)<br>
"My eyebrows are so blonde that sometimes it looks like I don't have eyebrows"<br>
"I spill a lot of food on myself"<br><br>
Carrie "Krusty Krab I eat it up" Rucker</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("cardenas")'>
<div class="container w3-center" id="cardenas">
<h1>Daniel Cardenas</h1>
<img src="profiles/cardenas.jpg" alt="Daniel" style="width:100%" class="w3-image">
<h2>2020 Co-Section Leader</h2>
<h2>Class: 2021</h2>
<h2>Hometown: Little Elm, TX</h2>
<h2>College: Engineering</h2>
<h2>Major: Computer Science</h2>
<bio>Born in a foreign land, Daniel learned English by absorbing American TV and culture from a very young
age. Ask him to speak his mother tongue, and be amazed at how the sounds coming out of his mouth definitely
don't sound American. In 2019, Daniel became a US citizen!<br><br> Daniel's been on the course staff for CS
2110 for over 2 years, and he'd love to answer any of your CS questions! He was also a Student Supervisor at
two dining halls simultaneously, just so he could brag about it. He quit once he realized it really wasn't
worth it.<br><br>Finally, Daniel's main role in the section is to produce cringe. </bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("shames")'>
<div class="container w3-center" id="shames">
<h1>Kayla Shames</h1>
<img src="profiles/shames.jpg" alt="Kayla" style="width:100%" class="w3-image">
<h2>2019 Equipment Chair<br>2019-2021 Guard Jester</h2>
<h2>Class: ZOZI</h2>
<h2>Hometown: Upper Saddle River, NJ</h2>
<h2>College: A&S</h2>
<h2>Majors: Linguistics / Music</h2>
<bio>Ask me about the words to the 2017 thriller dance</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("jacob")'>
<div class="container w3-center" id="jacob">
<h1>Emma Jacob</h1>
<img src="profiles/jacob.jpg" alt="Emma" style="width:100%" class="w3-image">
<h2>2018 & 2019 Co-Section Leader<br>Spring 2019 & Fall 2019 Pep Band Conductor</h2>
<h2>Class: 2020</h2>
<h2>Hometown: Midland, MI</h2>
<h2>College: Engineering</h2>
<h2>Major: Chemical Engineering</h2>
<bio>Emma studied chemical engineering. On campus, she is involved in the marching band, pep
band, AIChE and SWE. Additionally she plays the bells in McGraw Tower as a chimesmaster.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("grice")'>
<div class="container w3-center" id="grice">
<h1>Kelly Grice</h1>
<img src="profiles/grice.jpg" alt="Kelly" style="width:100%">
<h2>2019 Show Comm Chair<br>2018 Co-Section Leader<br>2018 Bandswoman of the Year<br>2018 Show Comm Comm
</h2>
<h2>Class: 2020</h2>
<h2>Hometown: Celebration, FL</h2>
<h2>College: Engineering</h2>
<h2>Major: Civil Engineering</h2>
<bio>Kelly likes concrete a lot. And some other stuff too I guess. </bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("waite")'>
<div class="container w3-center" id="waite">
<h1>Emily Waite</h1>
<img src="profiles/waite.jpg" alt="Emily" style="width:100%">
<h2>2019 Senior of the Year<br>2018 Pep Band Equipment Chair<br>2017 Marching Band Equipment Chair</h2>
<h2>Class: 2020</h2>
<h2>Hometown: Franklin, MA</h2>
<h2>College: Engineering</h2>
<h2>Major: Applied & Engineering Physics</h2>
<bio>After stumbling around on the field with the clarinets, saxes, and horns, Emily stumbled into the horn
section, where she quickly found her stride. She also likes physics and collects way too many instruments.
</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("smith")'>
<div class="container w3-center" id="smith">
<h1>Brandon Smith</h1>
<img src="profiles/smith.jpg" alt="Brandon Smith" style="width:100%">
<h2>2017 Horn Co-Section Leader</h2>
<h2>Class: 2019</h2>
<h2>Hometown: Boonville, NY</h2>
<h2>College: Arts and Sciences</h2>
<h2>Major: English</h2>
<bio>The realest Brandon in the Ivy League!</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("mcbrearty")'>
<div class="container w3-center" id="mcbrearty">
<h1>Lauren McBrearty</h1>
<img src="profiles/mcbrearty.jpeg" alt="Lauren" style="width:100%" class="w3-image">
<h2>Side Hoe (Sophomore, Junior, Senior) lol</h2>
<h2>Class: 2019</h2>
<h2>Hometown: Rocky Point, NY</h2>
<h2>College: Arts & Sciences </h2>
<h2>Majors: History & Italian</h2>
<bio>Lauren is a lady of many interests! Outside of band, she played club water polo, served as an editor
and
writer for Guac Magazine, and volunteered at a local nursing home. Lauren can still be found on campus -
she’s spending three more years here for law school! Also, ask her to pronounce "Saucy" for you.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("komorowski")'>
<div class="container w3-center" id="komorowski">
<h1>Maria Komorowski</h1>
<img src="profiles/komorowski.jpg" alt="Maria" style="width:100%" class="w3-image">
<h2>2017 Horn Co-Section Leader<br>2018 Alumni Relations Co-Chair<br>2016-2017 Pep Band Historian</h2>
<h2>Class: 2019</h2>
<h2>Hometown: North East, PA</h2>
<h2>College: Human Ecology</h2>
<h2>Major: Nutritional Sciences</h2>
<bio>Maria "Grape Queen" Komorowski hails from the hometown of Welch's grape juice and was a member of Less
Than Three A Cappella while at Cornell. Since graduating she will be at Walt Disney World until further
notice.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("sharma")'>
<div class="container w3-center" id="sharma">
<h1>Snigdha Sharma</h1>
<img src="profiles/sharma.jpg" alt="Snigdha" style="width:100%">
<h2>2015 Marching Band Uniform Chair <br>2016 Horn Co-Section Leader<br>2017 Spring Pep Band Conductor</h2>
<h2>Class: 2018</h2>
<h2>Hometown: Olathe, KS</h2>
<h2>College: Arts and Sciences</h2>
<h2>Major: English</h2>
<bio>Snigdha Sharma, Sniggie Smalls, Sniggu, Snigs: the woman, the myth, the legend. Born in Liverpool
England, raised in Olathe, Kansas and current resident of Philadepliha, Snigdha is a woman of many
talents.
When she isn't rockin' it on the horn (which she didn't pick up till coming to Cornell, by the way) she
can
be found playing violin in Chateau's bluegrass band, being a writing tutor in a broom closet, volunteering
with Alpha Phi Omega, or enjoying a nice, relaxing rap-along with the entire Hamiliton soundtrack.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("koide")'>
<div class="container w3-center" id="koide">
<h1>Sachi Koide</h1>
<img src="profiles/koide.jpg" alt="Sachi" style="width:100%">
<h2>2016 Horn Co-Section Leader</h2>
<h2>Class: 2018</h2>
<h2>Hometown: Los Gatos, CA</h2>
<h2>College: Arts and Sciences</h2>
<h2>Major: Biological Sciences</h2>
<bio>Sachi is an all around lover of cute animals, especially pandas.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("davis")'>
<div class="container w3-center" id="davis">
<h1>Adam Davis</h1>
<img src="profiles/davis.jpg" alt="Adam" style="width:100%">
<h2>Class:2018 </h2>
<h2>Hometown: Holland, PA</h2>
<h2>College: School of Industrial and Labor Relations</h2>
<h2>Major: Industrial and Labor Relations</h2>
<bio>Adam loves following sports, writes online blogs for the Cornell Daily Sun, and fascinated with certain
a
political figure.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("baxter")'>
<div class="container w3-center" id="baxter">
<h1>Kristen Rose</h1>
<img src="profiles/baxter.jpg" alt="KR" style="width:70%" class="w3-image">
<h2>2015 Marching Band Publicity Co-Chair<br>2016 & 2017 Alumni Relations Co-Chair</h2>
<h2>Class: 2017.5</h2>
<h2>Hometown: Gibsonia, PA</h2>
<h2>College: CALS</h2>
<h2>Major: Biological Sciences</h2>
<bio>KR spent most of her childhood being brainwashed into Joining Band (TM) - her parents, also BRMB
alumni,
raised her on a steady diet of stories from their glory days. When she came to Cornell she was a little
hesitant to join such a loud, eccentric, and stupidly friendly group of people, but she went to auditions
... and the rest is history!!<br>KR initially joined the band as a flute/piccolo but she was quickly
recruited by Lil Em '16 to learn to play the horn. From then on, she split her time between the flute
section and the horn section, and she never looked back! Like many other bandies, she fell in love with
the
band and spent countless hours at Schoellkopf and Lynah. With the massive amount of time left in her
schedule, she honed her fly-counting skills and earned a B.S. in Biological Sciences with a concentration
in
Genetics, Genomics, and Development. <br>KR now lives in Pittsburgh where she is pursuing a Doctor of
Physical Therapy degree from Chatham University. She treasures all of her memories from those good old
days
on the hill, and her times with the band will always hold a very special place in her heart!</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("shell")'>
<div class="container w3-center" id="shell">
<h1>Sean Shell</h1>
<img src="profiles/shell.jpg" alt="Sean Shell" style="width:100%">
<h2>2015 Horn Co-Section Leader <br>2014-2015 Marching Band Uniform Chair</h2>
<h2>Class: 2017 </h2>
<h2>Hometown: Fredericksburg, VA</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Animal Science</h2>
<bio>Sean "The Humor Judge" Shell is an obsessed fan of Igor Stravinsky's Firebird, is an awesome baker of
rainbow cakes, and kinda likes animals I guess.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("schord")'>
<div class="container w3-center" id="schord">
<h1>Alex Schord</h1>
<img src="profiles/schord.jpg" alt="Simba" style="width:70%" class="w3-image">
<h2>2014 Co-Section Leader</h2>
<h2>Class: 2016</h2>
<h2>Hometown: San Jose, California</h2>
<h2>College: Agriculture & Life Sciences</h2>
<h2>Major: Biological Sciences</h2>
<bio>Alex, known to us fondly as Simba, is a Jurassic Park and folk/fairy tale junkie.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("salerno")'>
<div class="container w3-center" id="salerno">
<h1>Stephen Salerno</h1>
<img src="profiles/salerno.jpg" alt="Steve" style="width:70%" class="w3-image">
<h2>Class: 2016</h2>
<h2>Hometown: Cobleskill, New York</h2>
<h2>College: Arts & Sciences</h2>
<h2>Major: Biometry and Statistics</h2>
<bio>Steve may possibly spend more time working in the Staler than any "hotelie" in exsistnce.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("green")'>
<div class="container w3-center" id="green">
<h1>Katie Green</h1>
<img src="profiles/green.jpg" alt="Katie" style="width:40%" class="w3-image">
<h2>2015 Co-Section Leader<br>2014 Pep Band Historian</h2>
<h2>Class: 2016</h2>
<h2>Hometown: Oxford, MA</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Animal Science</h2>
<h2>Favorite field shows: Les Mis (2013) and Dragon (2015)</h2>
<bio>She is a life long New Englander, who loves cows, hockey, teaching, yoga, and BAND! Currently residing
in
Dover NH, she is living the dream teaching teens about livestock, exotic pets, and animal health and
nutrition. <br> <br>The Big Red Bands and the Horns were her happy place at Cornell! She has fond memories
of being the mom friend at "events" and the crazy football weather.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("gless")'>
<div class="container w3-center" id="gless">
<h1>Jordan Gless</h1>
<img src="profiles/gless.jpeg" alt="Jordan" style="width:100%" class="w3-image">
<h2>2013-2015 Uniform Chair</h2>
<h2>Class: 2016</h2>
<h2>Hometown: Fort Collins, CO</h2>
<h2>College: CALS</h2>
<h2>Major: Environmental and Sustainability Science</h2>
<bio>Jordan identifies as a ‘cool aunt’ of the horn section. Along with band she also was on Cornell’s
women’s
polo team for a year and those matches are super fun to watch so check them out! She has a horse, Rocco, a
cat, Newt, and a proclivity for clever word association. Hit her up if you’re ever in the mountain west
and
she’ll show you some good nature and TexMex food!</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("burwell")'>
<div class="container w3-center" id="burwell">
<h1>Ethan Burwell</h1>
<img src="profiles/burwell.jpg" alt="Ethan" style="width:100%">
<h2>Class: 2016</h2>
<h2>Hometown: Kingston, NY</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Atmospheric Science</h2>
<bio> I prefer winter over summer. I like remote control cars. I prefer red over blue; maroon to be
specific.
I haven't eaten meat since 2007. Crab-walking is cool. Well formed clouds are hot. I've never been
skydiving, but I'd consider it. I've never been surfing, but I'd like to. I like to run. . . when I feel
like it. Naps are golden. Pluto is a planet.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("isenstein")'>
<div class="container w3-center" id="isenstein">
<h1>Emily Isenstein</h1>
<img src="profiles/isenstein.jpg" alt="Emily" style="width:100%">
<h2>2015 Marching Band Head Manager<br>2014 Marching Band Treasurer<br>2013 Marching Band Fundraising Chair
</h2>
<h2>Class: 2016</h2>
<h2>Hometown: Sandy Springs, GA</h2>
<h2>College: Human Ecology</h2>
<h2>Major: Human Development</h2>
<bio>Emily is a second generation horny-flute, meaning that she plays flute in Marching Band and horn in Pep
Band! After playing flute for 10 years, she was invited by the original horny-flutes to learn horn at the
very first Pep Band rehearsal of her freshman year, and hasn't looked back! Emily also enjoys riding
horses,
exploring, and general frolicking shenanigans.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("distler")'>
<div class="container w3-center" id="distler">
<h1>Andrew Distler</h1>
<img src="profiles/distler.jpg" alt="Andrew" style="width:80%" class="w3-image">
<h2>2014 Co-Section Leader</h2>
<h2>Class: 2015</h2>
<h2>Hometown: New York City</h2>
<h2>College: Arts & Sciences</h2>
<h2>Major: Sociology</h2>
<bio>Andrew loves sports, breakfast foods and classical music (and not necessarily in that order). While at
Cornell, his horniness wasn't confined to band, as he also played french horn in the Cornell Symphony
Orchestra. Since graduating, he has worked at ESPN, where he has made it his goal to get SportsCenter to
show as many highlights from Cornell sports as humanly possible (particularly from the men's and women's
hockey teams).</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("landis")'>
<div class="container w3-center" id="landis">
<h1>Jess Landis</h1>
<img src="profiles/landis.jpg" alt="Jess" style="width:100%">
<h2>2013 Marching Band Historian<br>2012-2013 Horn Co-Section Leader<br>2011-2012 Marching Band Uniform
Chair
</h2>
<h2>Class: 2014</h2>
<h2>Hometown: Kingston, NY</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Biology</h2>
<bio>Jess is a curly blonde with a large nose. She can often be seen wearing bright nail polish and an
armful
of macrame. While not studying for biology (because let's be honest, she doesn't study that much), she can
be found watching survivor or singing along to Taylor Swift. She will also out-burp you anytime, anywhere.
</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("bardabelias")'>
<div class="container w3-center" id="bardabelias">
<h1>Nicole "Bardy" Bardabelias </h1>
<img src="profiles/bardabelias.jpg" alt="Bardy" style="width:100%">
<h2>2013 Fall Pep Band Conductor<br>2012-2013 Horn Co-Section Leader</h2>
<h2>Class: 2014</h2>
<h2>Hometown: Valley Stream, NY</h2>
<h2>College: Arts and Sciences</h2>
<h2>Major: Science of Earth Systems (Planetary Science)</h2>
<bio>Nicole Bardabelias really loves space. She has been playing French Horn for over 10 years but has grown
to love the mellophone. In her spare time, she enjoys hanging out with her fellow bandies and looking at
Mars rocks with space robots. She would like to thank her HORN-y section buddies for picking her up off
the
street as a freshman and letting her join the only REAL horn section in the Ivy League!</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("roblee")'>
<div class="container w3-center" id="roblee">
<h1>Megan Roblee</h1>
<img src="profiles/roblee.jpg" alt="Meghan" style="width:100%">
<h2>Class: 2014</h2>
<h2>Hometown: Fonda, NY</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Animal Science</h2>
<bio>Meghan transferred to Cornell in the fall of 2012. She is also the inventor of the pickle dance. Ask
her
about bugs!</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("galbo")'>
<div class="container w3-center" id="galbo">
<h1>Peter Galbo</h1>
<img src="profiles/galbo.png" alt="Peter" style="width:100%">
<h2>2011 Marching Band Uniform Chair</h2>
<h2>Class: 2014</h2>
<h2>Hometown: Buffalo, NY</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Applied Economics and Management</h2>
<bio>Peter is an AEM major and therefore never does any work. Like Nicole, he played French Horn for years
and
had a hard time converting to mellophone. He likes running, Jess's back massages, and can be found doing
Tai-Chi on the top of Libe Slope as the sun rises. Oh yeah... and don't be afraid to ask him about his big
idea.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("steckel")'>
<div class="container w3-center" id="steckel">
<h1>Amanda Steckel</h1>
<img src="profiles/steckel.png" alt="Amanda" style="width:100%">
<h2>Class: 2014</h2>
<h2>Hometown: Rockville, MD</h2>
<h2>College: Engineering</h2>
<bio>One time, Amanda peed in the Charles River.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("clifton")'>
<div class="container w3-center" id="clifton">
<h1>John "Clifto" Clifton</h1>
<img src="profiles/clifton.png" alt="Clifto" style="width:100%">
<h2>Class: 2014</h2>
<h2>College: Ithaca College</h2>
<h2>Major: Film</h2>
<bio>Yo, I'm Clifto.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("simpson")'>
<div class="container w3-center" id="simpson">
<h1>Alex Simpson</h1>
<img src="profiles/simpson.jpg" alt="Alex" style="width:100%">
<h2>2012 Marching Band Historian<br>2011 Horn Section Leader<br>2011 Marching Band Secretary<br>2010
Marching
Band Publicity Chair</h2>
<h2>Class: 2013</h2>
<h2>Hometown: Encinitas, California</h2>
<h2>College: Engineering</h2>
<h2>Major: Science of Earth Systems</h2>
<bio>Alex is an alum of the school of engineering. When she isn't parading across campus in an incredibly
sexy
marching band uniform, she might be found hiking, surfing, listening to Paul Simon, working on a project
team aiming to build a preschool in South Africa this summer, or daydreaming about her favorite animal
(try
to guess what it is - shouldn't take you longer than 5 minutes of talking to her). She likes fast cars,
tight jeans, bubble baths, burritos, and long sunset walks on the beach.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("trimber")'>
<div class="container w3-center" id="trimber">
<h1>Gillian "Nemo" Trimber</h1>
<img src="profiles/trimber.png" alt="Nemo" style="width:100%">
<h2>Class: 2013</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Viticulture and Enology</h2>
<bio>Gillian likes to feel grapes squish between her toes.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("mingey")'>
<div class="container w3-center" id="mingey">
<h1>Rob Mingey</h1>
<img src="profiles/mingey.png" alt="Rob" style="width:100%">
<h2>Class: 2013</h2>
<h2>College: Industrial and Labor Relations</h2>
<h2>Major: Industrial and Labor Relations</h2>
<bio>Rob dresses like a Republican.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("gassler")'>
<div class="container w3-center" id="gassler">
<h1>Birgit Gassler</h1>
<h2>Class: Old</h2>
<h2>Hometown: Austria</h2>
<h2>College: Awesome</h2>
<h2>Major: Awesome</h2>
<bio>Birgit is super cool.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("flanagan")'>
<div class="container w3-center" id="flanagan">
<h1>John Flanagan</h1>
<img src="profiles/flanagan.jpg" alt="John" style="width:100%">
<h2>2011 Marching Band Show Committee Chair<br>2010 Horn Section Leader<br>2009 Marching Band Publicity
Chair
</h2>
<h2>Class: <2012 /2015/h2>
<h2>Hometown: Greene, NY</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Communications</h2>
<bio>J-Flanz likes to draw, make animations, and develop video games.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("dean")'>
<div class="container w3-center" id="dean">
<h1>Sam Dean<br><br><br></h1>
<img src="profiles/dean.JPG" alt="Sam" style="width:100%">
<h2><br><br>2011 Senior of the Year<br>2010, 2011 Uniform Chair</h2>
<h2>Class: 2012</h2>
<h2>Hometown: Gambrills, MD</h2>
<h2>College: College of Agriculture and Life Sciences</h2>
<h2>Major: Natural Resources</h2>
<bio>Sam did six years of competitive color guard, and started playing horn her freshman spring at Cornell.
When she wasn't at band, she could be found in Eco House or on the third floor of #ClubMann writing her
Daily Sun opinion column, Casual Wtfery.
<br><br>Somehow, someway, she acquired a reputation for mischievousness. <br>Maybe it was paying the
treasurer entirely in coins? <br>
Was it that smiley face she doodled on a photo of the drum major's butt? <br>
The surprise Furby she mailed the tubas? Unclear.<br> Even as an alum, she continues to send annual
holiday
(trolliday?) cards to all her band friends.<br><br>
A wildlife biologist and turtle expert by training, her arsenal of weird animal facts is unparalleled. In
her OLDness, she now coordinates college science labs and teaches biology and human anatomy. You should
know
she's not like those other professors, she's a ~cool~ professor.
</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("taft")'>
<div class="container w3-center" id="taft">
<h1>Jessie Taft</h1>
<img src="profiles/taft.jpg" alt="Jessie" style="width:100%">
<h2>2010 Colorguard Co-Captain</h2>
<h2>Class: 2012</h2>
<h2>Hometown: Bethany, CT</h2>
<h2>College: <Arts and Sciences/h2>
<h2>Major: Informatoin Science</h2>
<bio>Jessie likes steak, beer, heavy metal, and looking at pictures of kittens on the internet.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("lai")'>
<div class="container w3-center" id="lai">
<h1>Susie "Sushi" Lai</h1>
<img src="profiles/lai.jpg" alt="Sushi" style="width:100%">
<h2>2010 Fall Pep Band Co-Conductor<br>2009 Horn Section Leader<br>2008/09 Marching Band Uniform Chair</h2>
<h2>Class: 2011</h2>
<h2>Hometown: Port Richey, Florida/Hong Kong</h2>
<h2>College: Engineering</h2>
<h2>Major: Civil Engineering</h2>
<bio>Horn Mama for all of eternity, Susie can't speak English, but we love her anyway.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("boyd")'>
<div class="container w3-center" id="boyd">
<h1>Kevin Boyd</h1>
<img src="profiles/boyd.jpg" alt="Kevin" style="width:80%" class="w3-image">
<h2>2008 Marching Band Historian</h2>
<h2>Class: 2011</h2>
<h2>Hometown: Pittsburgh, Pennsylvania</h2>
<h2>College: Engineering</h2>
<h2>Major: Mechanical and Aerospace Engineering</h2>
<bio><b>KEVIN BOYD</b> was born on the stroke of midnight during a tornado in a spacious castle north of
Edinburgh. Several less miraculous things also occurred that night, including three-inch hail with smelt
frozen in the middle, the alignment of Mars with the star Thuban, and a brief reversal of gravity. He has
played the mellophone since the dawn of time, with occasional breaks to sleep and to protect his lands
from
marauding bands of ninjas.<br><br>
In the fall of 2007, he was warned by a wizened old man (in fact, his future self in a clever disguise)
that
the security of the Earth's timeline depended upon his joining the Cornell University Big Red Horn
section.
Moved by the passion of this venerable specter, he immediately uprooted his castle and shipped it via
helicopter convoy to the South Hill of Ithaca.<br><br>
Upon landing, he devoted himself with all his monstrous tenacity to the task at hand and, after
single-handedly liberating the Cornell dining halls from the clutches of a six-fingered man, laid his horn
and at the feet of Sir Brian "Walrusball" Adelman and pledged fealty to the Big Red Pep Band.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("alden")'>
<div class="container w3-center" id="alden">
<h1>Liz Alden</h1>
<img src="profiles/alden.jpg" alt="Liz" style="width:100%">
<h2>Class: 2011</h2>
<h2>Hometown: LeRoy, IL</h2>
<h2>College: Human Ecology</h2>
<h2>Major: Human Biology, Health, and Society</h2>
<bio>Om nom nom wine. Also, Liz plays rugby.</bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("pcsolyar")'>
<div class="container w3-center" id="pcsolyar">
<h1>Nika Pcsolyar</h1>
<img src="profiles/pcsolyar.jpg" alt="Nika" style="width:100%">
<h2>2009 Marching Band Fundraising Chair</h2>
<h2>Class: 2011</h2>
<h2>Hometown: Newtown Square, PA</h2>
<h2>College: Human Ecology</h2>
<h2>Major: Human Development</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("flager")'>
<div class="container w3-center" id="flager">
<h1>Harry Flager</h1>
<img src="profiles/flager.png" alt="Harry" style="width:100%">
<h2>Transferred to Columbia and still very much missed.</h2>
<h2>Class: 2013</h2>
<h2>Hometown: Somewhere in Florida</h2>
<h2>College: Agriculture and Life Sciences</h2>
<h2>Major: Food Science</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("feld")'>
<div class="container w3-center" id="feld">
<h1>Debbie Feld</h1>
<img src="profiles/feld.png" alt="Debbie" style="width:100%">
<h2>2008 Horn Section Leader</h2>
<h2>Class: 2010</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("cooney")'>
<div class="container w3-center" id="cooney">
<h1>Meagan Cooney</h1>
<h2>Class: 2009</h2>
<h2>Hometown: Long Island, NY</h2>
<h2>College: Agricultural and Life Sciences</h2>
<h2>Major: Animal Science</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("endriss")'>
<div class="container w3-center" id="endriss">
<h1>Jason Endriss</h1>
<img src="profiles/endriss.png" alt="Jason" style="width:100%">
<h2>2007 Horn Section Leader<br>2006-07 Pep Band Manager</h2>
<h2>Class: 2008</h2>
<h2>Hometown: Stacy, MN</h2>
<h2>College: Industrial and Labor Relations</h2>
<h2>Major: Industrial and Labor Relations</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("foster")'>
<div class="container w3-center" id="foster">
<h1>Becca Foster</h1>
<h2>2006 Marching Band Head Manager<br>2005 Horn Section Leader</h2>
<h2>Class: IC 2007</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("richardson")'>
<div class="container w3-center" id="richardson">
<h1>Anna Richardson</h1>
<img src="profiles/richardson.png" alt="Anna holding a puppy" style="width:100%">
<h2>2006 Horn Section Leader</h2>
<h2>Class: 2007</h2>
<h2>College: Hotel Administration</h2>
<h2>Major: Hotel Administration</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("jin")'>
<div class="container w3-center" id="jin">
<h1>George Jin</h1>
<img src="profiles/jin.jpg" alt="George" style="width:100%">
<h2>Class: 2006</h2>
<h2>Hometown: Hightstown, NJ</h2>
<h2>College: Engineering</h2>
<h2>Major: Electrical and Computer Engineering</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("buehler")'>
<div class="container w3-center" id="buehler">
<h1>Amanda Buehler</h1>
<img src="profiles/buehler.png" alt="" style="width:100%">
<h2>Class: 2006</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("mallouk")'>
<div class="container w3-center" id="mallouk">
<h1>Kaitlin Mallouk</h1>
<h2>Class: 2005</h2>
<h2>Hometown: Doyleston, PA</h2>
<h2>College: Engineering</h2>
<h2>Major: Chemical Engineering</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("dunsmoor")'>
<div class="container w3-center" id="dunsmoor">
<h1>Rachel Dunsmoor</h1>
<img src="profiles/dunsmoor.jpg" alt="Rachel" style="width:100%">
<h2>2003-04 Horn Co-Section Leader</h2>
<h2>Class: 2004</h2>
<h2>College: Industrial and Labor Relations</h2>
<h2>Major: Industrial and Labor Relations</h2>
<bio></bio>
</div>
</div>
<div class="card w3-padding" onclick='loadBio("reed")'>
<div class="container w3-center" id="reed">
<h1>Patty Reed</h1>
<h2>Class: 2004</h2>
<h2>Current City: Rochester, NY</h2>
<bio></bio>
</div>
</div>
</div>
</div>
<!-- Footer -->
<!-- <footer class="w3-center w3-black w3-padding-48 w3-xxlarge">
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank"
class="w3-hover-text-green">w3.css</a></p>
</footer> -->
<script>
function includeHTML() {
var z, i, elmnt, file, xhttp;
/* Loop through a collection of all HTML elements: */
z = document.getElementsByTagName("*");
for (i = 0; i < z.length; i++) {
elmnt = z[i];
/*search for elements with a certain atrribute:*/
file = elmnt.getAttribute("w3-include-html");
if (file) {
/* Make an HTTP request using the attribute value as the file name: */
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function () {
if (this.readyState == 4) {
if (this.status == 200) { elmnt.innerHTML = this.responseText; }
if (this.status == 404) { elmnt.innerHTML = "Page not found."; }
/* Remove the attribute, and call this function once more: */
elmnt.removeAttribute("w3-include-html");
includeHTML();
}
}
xhttp.open("GET", file, true);
xhttp.send();
/* Exit the function: */
return;
}
}
}
function loadBio(name) {
var person = document.getElementById(name).childNodes;
var modal = document.getElementById("myModal");
var modalContents = document.getElementById("modal-contents").childNodes;
var modalBio = document.getElementById("modal-bio");
for (var i = 0; i < person.length; i++) {
var info = person[i];
var modalInfo = modalContents[i];
if (typeof modalInfo !== "undefined" && info.tagName == "IMG") {
modalInfo.src = info.src
modalInfo.style.width = info.style.width
modalInfo.className = info.className
} else if (info.tagName == "BIO") {
modalBio.innerHTML = info.innerHTML
} else if (typeof modalInfo !== "undefined" && (info.tagName == "H1" || info.tagName == "H2")) {
modalInfo.innerHTML = info.innerHTML
}
}
modal.style.display = "block";
return;
}
includeHTML()
</script>
</body>
</html>