-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
198 lines (177 loc) · 12.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>UWAGGS</title>
<link rel="stylesheet" href="styles.css">
<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=Inter:[email protected]&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<!-- <a href="index.html"><img src="uwaggsLogo.png" alt="" class="uwaggsLogo"></a> -->
<nav>
<a href="index.html"><img src="uwaggsLogo.png" alt="" class="main-menu"></a>
<ul id="left-nav">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="club-info.html" class="nav-link">Club Info</a></li>
<li><a href="sessions.html" class="nav-link">Sessions</a></li>
<li><a href="our-team.html" class="nav-link">Our Team</a></li>
<li><a href="projects.html" class="nav-link">Projects</a></li>
<li><a class="nav-link" class="clickable" onclick="toggleDropdown2()">External Opportunities</a>
<div id="drop"><a href="conferences.html" class="drop-btn">Conferences</a><a href="competitions.html" class="drop-btn">Competitions</a></div></li>
</ul>
<ul id="right-nav">
<li><a href="https://gmail.us10.list-manage.com/subscribe?u=f6e8da7174c7d317758d5e871&id=cd89def6af" class="nav-link" target="blank">Mailing List</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLScXQDcEcnyehay8hTphzvxWqyYR8fbdHV66DK5gAsAc4ZLhZw/viewform" class="nav-link" target="_blank">Declaration of Interest</a></li>
</ul>
<!-- <ul id="right-nav">
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLScXQDcEcnyehay8hTphzvxWqyYR8fbdHV66DK5gAsAc4ZLhZw/viewform" class="nav-link">Mailing List</a></li>
<li><a href="https://discord.com/invite/YeUSFXxmxZ" class="nav-link">Discord</a></li>
</ul> -->
<div class="dropdown">
<button onclick="toggleDropdown()" class="dropbtn">☰</button>
<div id="myDropdown" class="dropdown-content">
</div>
</div>
</nav>
<div class="popup-overlay" id="popupOverlay">
<div class="outer-content" id="nav-oc">
<div class="dropdown-items" id="dropdown-id">
<div class="item"><a href="index.html" class="nav-link">Home</a></div>
<div class="item"><a href="club-info.html" class="nav-link">Club Info</a></div>
<div class="item"><a href="sessions.html" class="nav-link">Sessions</a></div>
<div class="item"><a href="our-team.html" class="nav-link">Our Team</a></div>
<div class="item"><a href="projects.html" class="nav-link">Projects</a></div>
<div class="item"><a href="conferences.html" class="nav-link">Conferences</a></div>
<div class="item"><a href="competitions.html" class="nav-link">Competitions</a></div>
<div class="item"><a href="https://gmail.us10.list-manage.com/subscribe?u=f6e8da7174c7d317758d5e871&id=cd89def6af" class="nav-link" target="_blank">Mailing List</a></div>
<div class="item"><a href="https://docs.google.com/forms/d/e/1FAIpQLScXQDcEcnyehay8hTphzvxWqyYR8fbdHV66DK5gAsAc4ZLhZw/viewform" class="nav-link" target="_blank">Declaration of Interest</a></div>
</div>
</div>
</div>
<!-- <div class="outer-content" id="nav-oc">
<div class="dropdown-items" id="dropdown-id">
<div class="item"><a href="index.html" class="nav-link">Home</a></div>
<div class="item"><a href="club-info.html" class="nav-link">Club Info</a></div>
<div class="item"><a href="sessions.html" class="nav-link">Sessions</a></div>
<div class="item"><a href="our-team.html" class="nav-link">Our Team</a></div>
<div class="item"><a href="projects.html" class="nav-link">Projects</a></div>
<div class="item"><a href="mailing.html" class="nav-link">Mailing List</a></div>
<div class="item"><a href="https://docs.google.com/forms/d/e/1FAIpQLScXQDcEcnyehay8hTphzvxWqyYR8fbdHV66DK5gAsAc4ZLhZw/viewform" class="nav-link">Declaration of Interest</a></div>
<div class="item"><a href="conferences.html" class="nav-link">Conferences</a></div>
<div class="item"><a href="competitions.html" class="nav-link">Competitions</a></div>
</div>
</div> -->
<div class="outer-title">
<h1 class="inner-title"> </h1>
</div>
<div class="outer-content">
<div class="inner-content">
<!-- <div class="dropdown-items" id="dropdown-id">
<div class="item"><a href="index.html" class="nav-link">Home</a></div>
<div class="item"><a href="club-info.html" class="nav-link">Club Info</a></div>
<div class="item"><a href="sessions.html" class="nav-link">Sessions</a></div>
<div class="item"><a href="our-team.html" class="nav-link">Our Team</a></div>
<div class="item"><a href="projects.html" class="nav-link">Projects</a></div>
<div class="item"><a href="mailing.html" class="nav-link">Mailing List</a></div>
<div class="item"><a href="https://docs.google.com/forms/d/e/1FAIpQLScXQDcEcnyehay8hTphzvxWqyYR8fbdHV66DK5gAsAc4ZLhZw/viewform" class="nav-link">Declaration of Interest</a></div>
<div class="item"><a href="conferences.html" class="nav-link">Conferences</a></div>
<div class="item"><a href="competitions.html" class="nav-link">Competitions</a></div>
</div> -->
<img src="logo-main.png" alt="" class="main-image">
<div class="section" id="about">
<h2>About Us</h2>
<p>The <b> University of Waterloo Analytics Group for Games and Sports (UWAGGS) </b>exists to gather students, staff, faculty, and members of the community at large to grow the presence of the quantitative analysis and applications of analytics to games and sports. Our main objectives are as follows:</div>
<ol>
<li>Facilitate collaboration on projects and teams for hackathons and competitions</li>
<li>Share resources for tutorials and workshops to enhance our breadth of data science applications to sport</li>
<li>Attend seminars from respected members of the sports analytics community</li>
<li>Present research at and attend conferences</li>
</ol>
<p>We meet in a hybrid format bi-weekly throughout the school year. Supplementary information from previous sessions can be found in the <a href="sessions.html" class="bold-hyperlink">Sessions</a> tab.</p>
<!-- <div class="section">
<h2>Software for Analytics</h2>
<div class="logos">
<img src="Rlogo.PNG" alt="" class="logo">
<img src="python.png" alt="" class="logo">
<img src="Julia_Programming_Language_Logo.svg" alt="" class="logo">
<img src="Sql_data_base_with_logo.png" alt="" class="logo">
<img src="Tableau-logo-300x235.png" alt="" class="logo">
</div>
<p>Sports analytics was built from the open source community, and as such <a href="https://www.r-project.org/" class="language">R</a>, <a href="https://www.python.org/" class="language">Python</a>, and <a href="https://julialang.org/" class="language">Julia</a> are the typical languages of choice, augmented by <a href="https://www.postgresql.org/" class="language">SQL</a> and <a href="https://www.tableau.com/" class="language">Tableau</a>.</p>
</div> -->
<div class="section">
<h2>Interested? Get in Touch!</h2>
<p>Join our <a href="https://gmail.us10.list-manage.com/subscribe?u=f6e8da7174c7d317758d5e871&id=cd89def6af" class="join-link" target="blank">mailing list</a> and fill out our <a href="https://docs.google.com/forms/d/e/1FAIpQLScXQDcEcnyehay8hTphzvxWqyYR8fbdHV66DK5gAsAc4ZLhZw/viewform" class="join-link" target="blank">declaration of interest</a> form</p>
</div>
<h3>Contact Information</h3>
<p>Email: <a href="mailto:[email protected]" class="email">[email protected]</a></p>
<p>Further contact avenues can be found from our <a href="https://linktr.ee/uwaggs" class="join-link" target="blank">linktree</a></p>
<!-- <div id="profiles">
<div class="profile">
<div class="profile-pic"></div>
<h3>Jack Davis</h3>
<p>Faculty Lecturer in Statistics and Actuarial Science</p>
<p>Currently studying poker and horse racing</p>
<p><a href="mailto:[email protected]" class="email">mj2davis@uwaterloo</a></p>
</div>
<div class="profile">
<div class="profile-pic"></div>
<h3>David Awosoga</h3>
<p>MMath Data Science</p>
<p>I'm interested in volleyball, baseball, basketball, and athletics</p>
<p><a href="mailto:[email protected]" class="email">david.awosoga@uwaterloo</a></p>
</div>
</div> -->
</div>
</div>
<footer>
<div class="outer-footer">
<div class="inner-footer">
<div class="left-footer">
<h3>Subscribe</h3>
<a href="https://gmail.us10.list-manage.com/subscribe?u=f6e8da7174c7d317758d5e871&id=cd89def6af" target=”_blank” class="footer-link">Mailing List</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScXQDcEcnyehay8hTphzvxWqyYR8fbdHV66DK5gAsAc4ZLhZw/viewform" target=”_blank” class="footer-link">Declaration of Interest</a>
</div>
<div class="center-footer">
<h3>Follow us</h3>
<div class="socials">
<div class="social-logo">
<a href="https://www.instagram.com/uwaggs" target="_blank"><img src="instagram.svg" alt=""></a>
</div>
<div class="social-logo">
<a href="https://www.linkedin.com/company/university-of-waterloo-analytics-group-for-games-and-sports/" target="_blank"><img src="linkedin.svg" alt=""></a>
</div>
<div class="social-logo">
<a href="https://github.com/uwaggs" target="_blank"><img src="github.png" alt=""></a>
</div>
</div>
</div>
<div class="right-footer">
<h3>Contact</h3>
<a href="mailto:[email protected]" class="footer-link">[email protected]</a>
<div class="logo-mq">
<div class="socials">
<div class="social-logo">
<a href="https://www.instagram.com/uwaggs" target="_blank"><img src="instagram.svg" alt=""></a>
</div>
<div class="social-logo">
<a href="https://www.linkedin.com/company/university-of-waterloo-analytics-group-for-games-and-sports/" target="_blank"><img src="linkedin.svg" alt=""></a>
</div>
<div class="social-logo">
<a href="https://github.com/uwaggs" target="_blank"><img src="github.png" alt=""></a>
</div>
</div>
</div>
</div>
</div>
</div>
<p>Website created by Juno Thiensirisak. Branding designed by Fehin Awobodu</p>
</div>
</footer>
</body>
</html>
<script src="script.js"></script>