-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (130 loc) · 5.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Northside Youth Soccer Leage</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<!-- This is the header -->
<header>
<div class="navigation_elements">
<a class="green_link" href="./index.html">Home</a>
<a class="blue_link" href="./about.html">About NYSL</a>
<a class="blue_link" href="./rules.html">Rules</a>
<a class="blue_link" href="./contact.html">Contact us</a>
<a class="blue_link" href="./register.html">Join us</a>
</div>
<div class="container">
<h1>Northside Youth Soccer Leage</h1>
<img class="logo_placement" src="img/nysl_logo.png" alt="Logo" />
</div>
<h2 class="comntent">Upcomming Events</h2>
</header>
<div class="content">
<table>
<tr>
<th>September</th>
<th>Teams</th>
<th>Location</th>
<th>Times</th>
</tr>
<tr>
<td>9/01</td>
<td>U and U41 </td>
<td>AJ Katzenmaier</td>
<td>9:30 a.m.</td>
</tr>
<tr>
<td>9/01</td>
<td>U3 and U2</td>
<td>Greenbay</td>
<td>1pm</td>
</tr>
<tr>
<td>9/01</td>
<td>U5 and U6</td>
<td>Howard A Yeager </td>
<td>9:30 am</td>
</tr>
<tr>
<td>9/01</td>
<td>u6 and U1</td>
<td>Marjorie P </td>
<td>1pm</td>
</tr>
</table>
<table>
<tr>
<th>October</th>
<th>Teams</th>
<th>Location</th>
<th>Times</th>
</tr>
<tr>
<td>10/13</td>
<td>U3 and U4</td>
<td>Howard A Yeager</td>
<td>9:30 a.m</td>
</tr>
</table>
<p class="important">Game Locations:</p>
<table>
<tr>
<th>Site</th>
<th>How to find</th>
</tr>
<tr>
<td>AJ Katzenmaier Elementary</td>
<td><a href="https://goo.gl/maps/Hws7w9yA3J72" target="_blank"> 24 W. Walton St., Chicago, IL 60610</a></td>
</tr>
<tr>
<td>Greenbay Elementary</td>
<td><a href="https://goo.gl/maps/YGGTeHLizUm" target="_blank">1734 N. Orleans St., Chicago, IL 60614</a></td>
</tr>
<tr>
<td>Howard A Yeager Elementary</td>
<td><a href="https://goo.gl/maps/AULjLSQ9DN22" target="_blank">2245 N. Southport Ave., Chicago, IL 60614</a></td>
</tr>
<tr>
<td>Marjorie P Hart Elementary </td>
<td><a href="https://goo.gl/maps/L7bsvLR8wwN2" target="_blank">2625 N. Orchard St., Chicago, IL 60614</a></td>
</tr>
<tr>
<td>North Elementary</td>
<td><a href="https://goo.gl/maps/TGRXDqXrHTL2" target="_blank">1409 N. Ogden Ave., Chicago, IL 60610</a></td>
</tr>
<tr>
<td>South Elementary</td>
<td><a href="https://goo.gl/maps/YyoPHonGiot" target="_blank">2101 N. Fremont St., Chicago, IL 60614</a></td>
</tr>
</table>
<p class="important">Facility Type: Outdoor</p>
Additional Information: If deemed necessary by NYSL, games may be shortened or
cancelled due to extreme weather conditions.
Please direct all questions to: Michael Randall, League Coordinator
Phone: (630) 690-8132 <a href=emailTo>michael.randall@chisoccer.org</a>
</div>
<footer class="page_footer">
<div class="footer_text_area">
<a href="http://www.fifa.com">Fifa</a><br>
<a href="https://www.usadultsoccer.com/">US Addult Soccer</a><br>
<a href="https://www.meetup.com/Kick-It-Social-Soccer/">Chicago Social Soccer</a><br>
</div>
<div class="footer_text_location">
<div class="footer_title">Contact</div>
<div class="footer_text">
Michael Randall, League Coordinator
Phone: (630) 690-8132 <a href="emailTo:michael.randall@chisoccer.org">michael.randall@chisoccer.org</a> or in case of general queries
e-mail us at <a href="emailto:nysl@chisoccer.org">chisoccer.org</a>
</div>
</div>
<div>
<div class="footer_title">Mission</div>
<p class="footer_text">
To support young athletes living in Chicago northside neighborhoods, who have an interest in learning and playing soccer, with opportunities to learn and practice skills related tothe game of soccer, specifically those skills arround team coorperation and good sportsmanship
</p>
</div>
</footer>
</body>
</html>