-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·781 lines (692 loc) · 28.1 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
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
<!-- S I T E I N F O R M A T I O N -->
<!--
To edit a section, search by the keyword (id)
and follow instructions preceding the <div> or
<section>.
// TO DO (for Christina): change id names.
S E C T I O N S: (name to search is in quotes)
header: "headerwrap"
officers: "team"
team: "portfolio"
contact: "contact"
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Michigan Equestrian Team">
<meta name="author" content="Christina Chen">
<link rel="shortcut icon" href="assets/ico/favicon.png">
<title>Michigan Equestrian Team</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/icomoon.css">
<link href="assets/css/animate-custom.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>
<script src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/modernizr.custom.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-offset="0" data-target="#navbar-main">
<!-- N A V I G A T I O N B A R -->
<div id="navbar-main">
<!-- Fixed navbar -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="#home" class="smoothScroll">Home</a></li>
<li> <a href="#about" class="smoothScroll"> About</a></li>
<li> <a href="#showing" class="smoothScroll"> Riding</a></li>
<li> <a href="#officers" class="smoothScroll"> Officers</a></li>
<li> <a href="#team" class="smoothScroll"> Team</a></li>
<li> <a href="#faq" class="smoothScroll"> FAQ</a></li>
<li> <a href="#contact" class="smoothScroll"> Contact</a></li>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<!-- H E A D E R -->
<!--
Images can be updated by changing the "src" attribute of the <img> tag.
The simplest way is to upload the new image into 'assets/img' on mfile
with the same name: "umet-website-header-cropped.jpg".
The <img> tag of the header should always look like:
<img src="assets/img/FILENAME"/>
where FILENAME is the name of the file (with the extension included).
-->
<div id="headerwrap" id="home" name="home">
<header class="clearfix">
<h1><img src="assets/img/umet-website-header-cropped.jpg"/></h1>
<p>We are a team of <strong>University of Michigan</strong> students with a passion for horses.</p>
</header>
</div><!-- /headerwrap -->
<!-- A B O U T -->
<!--
Content goes in between the third set of <div> tags.
Paragraphs are denoted by <p> tags, so each paragraph lives between
its own set of <p> tags.
Please note: some special characters will not display correctly such
as &, which needs to be written like &
-->
<div class="container" id="about" name="about">
<div class="row white">
<br>
<h1 class="centered">WHO WE ARE</h1>
<hr>
<div class="col-lg-offset-2 col-lg-8">
<p>The Michigan Equestrian Team accepts anyone with an interest in horses, from first-time riders to those with years of high-level competitive experience. We believe that every rider has something to offer and something to learn as we practice, compete, and spend time together. We compete through the Intercollegiate Horse Show Association (IHSA) as a Hunt Seat team. Even beginner riders are offered the opportunity to compete at the Walk-Trot level as they begin to develop their skills. Those who are not interested in competing are also welcome to join the team and practice with us.</p>
<p>In addition to riding, the Michigan Equestrian Team offers several fantastic social events, which provide a great opportunity to meet new people and make friends. Social activities include Ben & Jerry’s movie nights, cookie decorating, a year-end banquet, and many more. In addition, we are proud to take part in fundraising events and volunteering at Starry Skies Equine Rescue and Sanctuary.</p>
</div>
</div><!-- row -->
</div><!-- container -->
<!-- S O C I A L M E D I A -->
<!--
The format of a link is: <a href="URL"></a>. The href attribute is
where the links go. If any links to social media need to be changed,
put the changes in between the quotes of the href attribute.
-->
<section class="section-divider textdivider divider1">
<div class="container">
<!-- social media stuff here probably -->
<h1>FIND US ON SOCIAL MEDIA</h1>
<hr>
<p>
<!-- facebook -->
<a href="https://www.facebook.com/michiganequestrian">
<img src="assets/img/icons/facebook.png"/>
</a>
<!-- instagram -->
<a href="https://instagram.com/UMichEquestrian/">
<img src="assets/img/icons/instagram.png"/>
</a>
<!-- twitter -->
<a href="https://twitter.com/UMichEquestrian">
<img src="assets/img/icons/twitter.png"/>
</a>
</p>
</div><!-- container -->
</section><!-- section -->
<!-- S H O W I N G -->
<!--
The showing section is divided into three columns. Each paragraph
goes between the <p> tags.
(If additional paragraphs need to be added, a new <div> section will
be needed per paragraph. The class attribute on each of the paragraph
<div>'s will need to be updated or else the columns won't fit on the
site. Please see Bootstrap's documentation for more information:
http://getbootstrap.com/css/#grid)
-->
<div class="container" id="showing" name="showing">
<br>
<br>
<div class="row">
<h1 class="centered">SHOWING</h1>
<hr>
<div class="col-lg-4">
<p>The Michigan Equestrian Team is a part of the network of Hunter Seat Equitation teams competing through the <a href="http://www.ihsainc.org">IHSA</a>, an organization which intends to give any college student the chance to participate in horse shows regardless of riding ability or financial status. We are a member of Zone 6, Region 4, and compete against universities based in Michigan and Canada. Generally, we attend between five and eight horse shows per academic year, including a two-day show hosted by our team.</p>
</div>
<div class="col-lg-4">
<p>The IHSA provides competitive divisions on the flat and/or over fences for every level of rider, beginning with Walk-Trot and continuing to Open Equitation over Fences (maximum jump height of 3’3”). Horses are provided by the host team, and each rider draws their mount by lot before their class. A new member’s beginning division is determined by a combination of a survey of past experience and an evaluation ride completed at the beginning of the year.</p>
</div>
<div class="col-lg-4">
<p>Entries in each show are determined by our coach based on ability and participation in practice and lessons. Riders earn individual points based upon their placement in each class, and one rider per division is selected to win points for the entire team. Riders who acquire 36 individual points advance one division and have the opportunity to compete at Regionals and potentially move on to Zones, and from there, to Nationals.</p>
</div>
</div><!-- row -->
<div class="row">
<h2 class="centered"></h2>
<hr>
<br>
<div class="col-lg-offset-2 col-lg-8">
<img class="img-responsive" src="assets/img/team_2015.jpg" alt="">
</div><!-- col -->
</div><!-- row -->
</div><!-- container -->
<!-- P R A C T I C E -->
<section class="section-divider textdivider divider2">
<div class="container">
<h1 class="centered">PRACTICE</h1>
<hr>
<br>
<p>Team practices are held every other week. Flat riders practice Tuesday evenings and Jump riders practice Wednesday evenings. Practices are held at <a href="http://www.willowbrooke-farm.com">Willowbrooke Farm</a> in Plymouth, MI, about twenty-five minutes off campus. The team runs a carpool for practice.</p>
<p>Those riders intending to compete over fences are required by the IHSA to take additional weekly lessons, and many other members of the team choose to take lessons for extra practice. Most lessoning members join group lessons with teammates for the sake of carpooling and having the chance to ride with friends. More information on lessons and pricing is available on Willowbrooke’s website.</p>
</div><!-- container -->
</section><!-- section -->
<!-- O F F I C E R S -->
<!--
Please put all images in the assets/img/officers folder.
For convenience and organization, name all files in the format:
[FIRST-INITIAL][LAST-NAME][JPG].
Each officer will have its own <div> section. Copy and paste an
existing <div> section and modify as necessary.
Modifications needed to be made:
- image: change the src attribute of the <img> tag.
- name: inside the <h4><b></b></h4> tags
- position: under the name, in the <p> tag
-->
<div class="container" id="officers" name="officers">
<br>
<div class="row white centered">
<h1 class="centered">MEET OUR OFFICERS</h1>
<hr>
<br>
<br>
<div class="col-lg-3 centered">
<img class="img img-rounded" src="assets/img/officers/dhowes.jpg" height="150px" width="150px" alt="">
<br>
<h4><b>David Howes</b></h4>
<p>Co-President</p>
</div><!-- col-lg-3 -->
<div class="col-lg-3 centered">
<img class="img img-rounded" src="assets/img/officers/mkernohan.jpg" height="150px" width="150px" alt="">
<br>
<h4><b>Morgan Kernohan</b></h4>
<p>Co-President</p>
</div><!-- col-lg-3 -->
<div class="col-lg-3 centered">
<img class="img img-rounded" src="assets/img/officers/amukavitz.jpg" height="150px" width="150px" alt="">
<br>
<h4><b>Allie Mukavitz</b></h4>
<p>Vice-President</p>
</div><!-- col-lg-3 -->
<div class="col-lg-3 centered">
<img class="img img-rounded" src="assets/img/officers/jsmith.jpg" height="150px" width="150px" alt="">
<br>
<h4><b>Jane Smith</b></h4>
<p>Vice-President</p>
</div><!-- col-lg-3 -->
<div class="col-lg-3 centered">
<img class="img img-rounded" src="assets/img/officers/arosenstock.jpg" height="150px" width="150px" alt="">
<br>
<h4><b>Allison Rosenstock</b></h4>
<p>Treasurer</p>
</div><!-- col-lg-3 -->
<div class="col-lg-3 centered">
<img class="img img-rounded" src="assets/img/officers/kmyers.jpg" height="150px" width="150px" alt="">
<br>
<h4><b>Katie Myers</b></h4>
<p>Webmaster</p>
</div><!-- col-lg-3 -->
<div class="col-lg-3 centered">
<img class="img img-rounded" src="assets/img/officers/mvarady.jpg" height="150px" width="150px" alt="">
<br>
<h4><b>Mara Varady</b></h4>
<p>New Member Coordinator</p>
</div><!-- col-lg-3 -->
</div><!-- row -->
</div><!-- container -->
<!-- J O I N T H E T E A M -->
<section class="section-divider textdivider divider3">
<div class="container">
<h1>JOIN THE TEAM</h1>
<hr>
<p>Find us at Festifall when Fall semester begins or contact our new member officer.</p>
</div><!-- container -->
</section><!-- section -->
<!-- T E A M -->
<!--
All images should go in /assets/img/team and named identically to the
officers. (First initial followed by last name).
Each row contains a maximum of three members. This section is more
involved than the officers section. The members are to be sorted alphabetically
by last name.
The structure of each row is:
<div class="row"> // THE FIRST ROW
<div class="col-md-4">
COLUMN 1 MEMBER
</div>
<div class="col-md-4">
COLUMN 2 MEMBER
</div>
<div class="col-md-4">
COLUMN 3 MEMBER
</div>
</div>
<div class="row"> // THE SECOND ROW
...
</div>
So if a section exceeds three <div class="col-md-4">'s, the next <div> needs
to be moved to the subsequent <div class="row">.
Again, the src attribute of the <img> tag contains the link to the image.
Within the <figcaption> tags and inside the <h5> tags, put the member's
information: NAME | YEAR | DIVISION.
-->
<div class="container" id="team" name="team">
<br>
<div class="row">
<br>
<h1 class="centered">MEET THE TEAM</h1>
<hr>
<br>
<br>
</div><!-- /row -->
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/nackley.jpg" alt="">
<figcaption>
<h5>Nancy Ackley | 2017 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/kanderson.jpg" alt="">
<figcaption>
<h5>Katrina Anderson | 2017 | AWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/acacciaglia.jpg" alt="">
<figcaption>
<h5>Abrielle Cacciaglia | 2018 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/cchen.jpg" alt="">
<figcaption>
<h5>Christina Chen | 2015 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/cchristian.jpg" alt="">
<figcaption>
<h5>Cassie Christian | 2018 | BWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/bdaniel.jpg" alt="">
<figcaption>
<h5>Bethany Daniel | 2017 | BWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/kdegrace.jpg" alt="">
<figcaption>
<h5>Katie Degrace | 2018 | WT</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/sfranklin.jpg" alt="">
<figcaption>
<h5>Sarah Franklin | 2016 | WT</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/jfrench.jpg" alt="">
<figcaption>
<h5>Jessica French | 2016 | AWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/ifutter.jpg" alt="">
<figcaption>
<h5>Isobel Futter | 2018 | AWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/ggraves.jpg" alt="">
<figcaption>
<h5>Gabrielle Graves | 2017 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/khoffswell.jpg" alt="">
<figcaption>
<h5>Katie Hoffswell | 2017 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/mkernohan.jpg" alt="">
<figcaption>
<h5>Morgan Kernohan | 2016 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/klibrett.jpg" alt="">
<figcaption>
<h5>Katey Librett | 2018 | BWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/mlicciardi.jpg" alt="">
<figcaption>
<h5>Mia Licciardi | 2017 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/amukavitz.jpg" alt="">
<figcaption>
<h5>Allie Mukavitz | 2017 | Open</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/kmyers.jpg" alt="">
<figcaption>
<h5>Katie Myers | 2017 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/hprout.jpg" alt="">
<figcaption>
<h5>Haley Prout | 2018 | BWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/arosenstock.jpg" alt="">
<figcaption>
<h5>Allison Rosenstock | 2016 | Novice</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/oshay.jpg" alt="">
<figcaption>
<h5>Olivia Shay | 2016 | AWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/jsmith.jpg" alt="">
<figcaption>
<h5>Jane Smith | 2018 | Intermediate</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/cspillane.jpg" alt="">
<figcaption>
<h5>Calla Spillane | 2016 | AWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/astoldt.jpg" alt="">
<figcaption>
<h5>Annika Stoldt | 2018 | BWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/mtaetle.jpg" alt="">
<figcaption>
<h5>Melanie Taetle | 2018 | Open</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<div class="row">
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/ctseng.jpg" alt="">
<figcaption>
<h5>Catherine Tseng | 2018 | WT</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/mvarady.jpg" alt="">
<figcaption>
<h5>Mara Varady | 2018 | AWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
<div class="col-md-4">
<div class="grid mask">
<figure>
<img class="img-responsive" src="assets/img/team/ewilson.jpg" alt="">
<figcaption>
<h5>Emily Wilson | 2015 | AWTC</h5>
</figcaption><!-- /figcaption -->
</figure><!-- /figure -->
</div><!-- /grid-mask -->
</div><!-- /col -->
</div><!-- /row -->
<br>
<br>
</div><!-- /row -->
</div><!-- /container -->
<!-- empty section ==== -->
<section class="section-divider textdivider divider4">
<div class="container">
<h1></h1>
<p></p>
</div><!-- container -->
</section><!-- section -->
<!-- F A Q -->
<!--
Q&A's are divided up and put into three columns.
Use your discretion in terms of which questions go into what columns.
There isn't a set ordering for the questions other than to fit
the questions and answers in the most aesthetic way possible (such that
the columns are of equal length).
Questions go in <h4> tags. Answers go in <p> tags.
-->
<div class="container" id="faq" name="faq">
<br>
<div class="row">
<h1 class="centered">FREQUENTLY ASKED QUESTIONS</h1>
<hr>
<br>
<br>
<div class="col-lg-4">
<h4>Do I need my own horse?</h4>
<p>Absolutely not! In fact, most team members do not own horses or do not have their horses at college with them. In IHSA, the host college provides all of the horses for the shows, so there is no need to own your own horse.</p>
<h4>Do I need to have any riding experience?</h4>
<p>No, there are divisions for every level of rider, so we need riders from all experience levels!</p>
</div><!-- col-lg-4 -->
<div class="col-lg-4">
<h4>Where do you ride?</h4>
<p>Our team is based at Willowbrooke Farm in Plymouth Michigan, which is owned and operated by our coach, Jennifer Blades.</p>
<h4>Are there tryouts?</h4>
<p>We do hold evaluation riders to give our coach, Jen, a chance to see you ride and ensure you are placed in the correct division. We do not cut anyone from the team.</p>
</div>
<div class="col-lg-4">
<h4>Do I need a car?</h4>
<p>No, we all carpool to practice, lessons, and shows, so there is no need to own a car.</p>
<h4>Do I need my own equipment?</h4>
<p>You do not need to own any tack. Any member who wants to show must have the correct show attire. However, if you do not own show clothes, we can almost always find clothes that fit you to borrow from other showing members.</p>
</div>
</div><!-- /row -->
<br>
<br>
</div><!-- /container -->
<!-- ==== SECTION DIVIDER6 ==== -->
<section class="section-divider textdivider divider6">
<div class="container">
<h1></h1>
</div><!-- container -->
</section><!-- section -->
<!-- C O N T A C T U S -->
<!--
Change new member information as necessary.
General questions are directed to the president/co-presidents.
If there is only one president and there were two previously,
remove the last two <span> classes under "<h3>General Questions</h3>".
If there are two presidents and only one president previously, make sure
that there are two sets of <span> lines.
A set of <span>'s for a contact should look like:
<span class="glyphicon glyphicon-user"></span> NAME<br/>
<span class="glyphicon glyphicon-envelope"></span> EMAIL<br/>
Make sure there is a space before the namd and before the e-mail for
formatting with the glyphicon.
-->
<div class="container" id="contact" name="contact">
<div class="row">
<br>
<h1 class="centered">THANKS FOR VISITING US</h1>
<hr>
<br>
<br>
<div class="col-lg-4">
<h3>Contact Information</h3>
<p><b>New Member Inquiries</b> <br/>
<span class="glyphicon glyphicon-user"></span> Mara Varady<br/>
<span class="glyphicon glyphicon-envelope"></span> [email protected]<br/>
</p>
<p><b>General Questions</b><br/>
<span class="glyphicon glyphicon-user"></span> Morgan Kernohan<br />
<span class="glyphicon glyphicon-envelope"></span> [email protected]<br/>
<span class="glyphicon glyphicon-user"></span> David Howes<br />
<span class="glyphicon glyphicon-envelope"></span> [email protected]<br/>
</p>
</div><!-- col -->
<div class="col-lg-4">
<h3>Willowbrooke Farm</h3>
<p><b>Coach: Jennifer Blades</b>
<br>
<b>Assistant Coaches:</b>
<br>
<b>Jenny Steinmetz & Kirsten Kumpar</b>
<br>
Please visit the website <a href="http://www.willowbrooke-farm.com">here</a> for more information about the barn and for lesson inquiries.
</p>
</div><!-- col -->
<div class="col-lg-4">
<h3>Starry Skies Equine Rescue and Sanctuary</h3>
<p>Starry Skies is a non-profit organization dedicated to providing horses with homes and a place for rehab. Please consider volunteering here with us!</p>
<p>
<a href="https://www.facebook.com/pages/Starry-Skies-Equine-Rescue-and-Sanctuary/">
<img src="assets/img/icons/sm_facebook.png"/>
</a>
<a href="https://instagram.com/_starry_skies_rescue_/">
<img src="assets/img/icons/sm_instagram.png"/>
</a>
</p>
</div><!-- col -->
</div><!-- row -->
</div><!-- container -->
<div id="footerwrap">
<div class="container">
<h4>Created by Christina Chen</h4>
<h4>Team Logo by Jessica French</h4>
<h4>Content by Mia Licciardi</h4>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/js/retina.js"></script>
<script type="text/javascript" src="assets/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="assets/js/smoothscroll.js"></script>
<script type="text/javascript" src="assets/js/jquery-func.js"></script>
</body>
</html>