-
Notifications
You must be signed in to change notification settings - Fork 0
/
executive.html
123 lines (104 loc) · 4.24 KB
/
executive.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Executive Board - UWEC Waterski</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel='stylesheet' type='text/css' media='screen' href='css/style.css'>
</head>
<body>
<header>
<h1 class="header">UW - Eau Claire: Waterski and Wakeboard Team</h1>
<div class="navbar">
<a class="navbar-link" href="index.html">Home</a>
<a class="navbar-link" href="practices.html">Practices</a>
<a class="navbar-link" href="tournaments.html">Tournaments</a>
<a class="navbar-link" href="executive.html">Executive Board</a>
<a class="navbar-link" href="gallery.html">Photo Gallery</a>
<a class="navbar-link" href="contact.html">Contact</a>
<a class="navbar-link" href="affiliations.html">Affiliations</a>
<a class="navbar-link" href="equipment.html">Equipment Use</a>
<a class="navbar-link" href="events.html">Social Events</a>
<a class="navbar-link" href="join.html">How to Join</a>
</div>
</header>
<div class="content">
<h1>Executive Board</h1>
<h3>Meet the people who make this club happen! Our executive board is a group of students who love the sport of waterskiing!</h3>
</div>
<main class="cards">
<article class="card">
<img src="images/duncan.JPG" alt="Duncan">
<div class="text">
<h3>Duncan Riedi</h3>
<ul>
<li>Graduation Year: 2023</li>
<li>Major: Computer Science</li>
<li>Favorite Event: Trick</li>
</ul>
<hr>
<footer>Vice President</footer>
</div>
</article>
<article class="card">
<img src="images/gallery4.JPG" alt="Garret">
<div class="text">
<h3>Garret Alby</h3>
<ul>
<li>Graduation Year: 2023</li>
<li>Major: Business Accounting</li>
<li>Favorite Event: Slalom</li>
</ul>
<hr>
<footer>President</footer>
</div>
</article>
<article class="card">
<img src="images/max.jpg" alt="Max">
<div class="text">
<h3>Max Wohlleber</h3>
<ul>
<li>Graduation Year: 2021</li>
<li>Major: Accounting</li>
<li>Favorite Event: Barefooting</li>
</ul>
<hr>
<footer>Safety Officer</footer>
</div>
</article>
<article class="card">
<img src="images/anna.JPEG" alt="Anna">
<div class="text">
<h3>Anna Jaeger</h3>
<ul>
<li>Graduation Year: 2023</li>
<li>Major: Actuarial Science</li>
<li>Favorite Event: Jump</li>
</ul>
<hr>
<footer>Secretary</footer>
</div>
</article>
<article class="card">
<img src="images/gallery9.JPG" alt="Grant">
<div class="text">
<h3>Grant Roloff</h3>
<ul>
<li>Graduation Year: 2022</li>
<li>Major: Personal Finance</li>
<li>Favorite Event: Trick</li>
</ul>
<hr>
<footer>Treasurer</footer>
</div>
</article>
</main>
<footer>
<div class="footer">
The Waterski and Wakeboard Team is a recognized Club Sports team at the University of Wisconsin - Eau Claire
</div>
</footer>
</body>
</html>