-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame_info.html
219 lines (218 loc) · 7.54 KB
/
game_info.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NYSL - Game Information</title>
<link href="styles/nysl_uk.css" rel="stylesheet" type="text/css">
<link href="fonts/balsamiqsans/stylesheet.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Mada&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="images_container">
<div class="header_image" id="img1">
</div>
<div class="header_image" id="img2">
</div>
<div class="header_image" id="img3">
</div>
<div class="header_image" id="img4">
</div>
</div>
<h2>Game Information</h2>
</header>
<nav>
<div class="wrap h1_wrap">
<h1>Northside Youth Soccer League</h1>
</div>
<div class="wrap logo_wrap">
<img class="logo" src="images/nysl_logo.png" alt="NYSL Logo">
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About NYSL</a></li>
<li class="current_nav">Game Information</li>
<li><a href="rules.html">Rules & Policies</a></li>
<li><a href="registration.html">Registration</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<div class="text_main" id="text_game_info">
<h2>Fall Schedule</h2>
<p class="ital_text">All games take place on Saturday.</p>
<table class="table">
<thead>
<tr>
<th scope="col">SEPTEMBER</th>
<th scope="col">Teams</th>
<th scope="col">Location</th>
<th scope="col">Times</th>
</tr>
</thead>
<tbody>
<tr>
<td>9/01</td>
<td>U1 and U4</td>
<td>AJ Katzenmaier</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td></td>
<td>U3 and U2</td>
<td>Greenbay</td>
<td>1:00 p.m.</td>
</tr>
<tr>
<td>9/08</td>
<td>U5 and U6</td>
<td>Howard A Yeager</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td></td>
<td>U6 and U1</td>
<td>Marjorie P Hart</td>
<td>1:00 p.m.</td>
</tr>
<tr>
<td>9/15</td>
<td>U2 and U4</td>
<td>North</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td></td>
<td>U3 and U5</td>
<td>AJ Katzenmaier</td>
<td>1:00 p.m.</td>
</tr>
<tr>
<td>9/22</td>
<td>U1 and U3</td>
<td>South</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td></td>
<td>U2 and U6</td>
<td>Howard A Yeager</td>
<td>1:00 p.m.</td>
</tr>
<tr>
<td>9/29</td>
<td>U4 and U5</td>
<td>Greenbay</td>
<td>9:30 a.m.</td>
</tr>
<tr class="empty_table_row">
<td colspan="4"></td>
</tr>
<tr>
<th scope="col">OCTOBER</th>
<th scope="col">Teams</th>
<th scope="col">Location</th>
<th scope="col">Times</th>
</tr>
<tr>
<td>10/06</td>
<td>U2 and U5</td>
<td>Marjorie P Hart</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td></td>
<td>U1 and U6</td>
<td>South</td>
<td>1:00 p.m.</td>
</tr>
<tr>
<td>10/13</td>
<td>U3 and U4</td>
<td>Howard A Yeager</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td></td>
<td>U5 and U1</td>
<td>Greenbay</td>
<td>1:00 p.m.</td>
</tr>
<tr>
<td>10/20</td>
<td>U6 and U3</td>
<td>North</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td></td>
<td>U2 and U4</td>
<td>Marjorie P Hart</td>
<td>1:00 p.m.</td>
</tr>
<tr>
<td>10/27</td>
<td>U3 and U1</td>
<td>AJ Katzenmaier</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td></td>
<td>U5 and U6</td>
<td>Howard A Yeager</td>
<td>1:00 p.m.</td>
</tr>
</tbody>
</table>
<table class="table">
<thead>
<tr>
<th scope="col">Game Locations:</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr>
<td>AJ Katzenmaier Elementary</td>
<td>24 W. Walton St., Chicago, IL 60610</td>
</tr>
<tr>
<td colspan="2"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2969.654246110986!2d-87.63123908501817!3d41.900292379220424!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x880fd34e07f6bac3%3A0x68a82e5d59952c86!2s24%20W%20Walton%20St%2C%20Chicago%2C%20IL%2060610%2C%20USA!5e0!3m2!1sde!2sde!4v1569228723308!5m2!1sde!2sde" width="400" height="300" style="border:0;" allowfullscreen=""></iframe></td>
</tr>
<tr>
<td>Greenbay Elementary</td>
<td>1734 N. Orleans St., Chicago, IL 60614</td>
</tr>
<tr>
<td colspan="2"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2969.0258843688553!2d-87.64002798501764!3d41.91380227921941!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x880fd34073f306a3%3A0x9e1726bbf8f23f0e!2s1734%20N%20Orleans%20St%2C%20Chicago%2C%20IL%2060614%2C%20USA!5e0!3m2!1sde!2sde!4v1569228632588!5m2!1sde!2sde" width="400" height="300" style="border:0;" allowfullscreen=""></iframe></td>
</tr>
<tr>
<td>Howard A Yeager Elementary</td>
<td>2245 N. Southport Ave., Chicago, IL 60614</td>
</tr>
<tr>
<td>Marjorie P Hart Elementary</td>
<td>2625 N. Orchard St., Chicago, IL 60614</td>
</tr>
<tr>
<td>North Elementary</td>
<td>1409 N. Ogden Ave., Chicago, IL 60610</td>
</tr>
<tr>
<td>South Elementary</td>
<td>2101 N. Fremont St., Chicago, IL 60614</td>
</tr>
</tbody>
</table>
<p><b>Facility Type:</b> Outdoor</p>
<p><b>Additional Information:</b> If deemed necessary by NYSL, games may be shortened or
cancelled due to extreme weatherconditions.</p>
<p><b>Please direct all questions to:</b> Michael Randall, League Coordinator</p>
<div class="flex_inline_spread">
<p><b>Phone:</b> (630) 690-8132</p>
<p><b>Email:</b> michael.randall@chisoccer.org</p>
</div>
</div>
</main>
</body>
</html>