-
Notifications
You must be signed in to change notification settings - Fork 0
/
basics.html
36 lines (33 loc) · 1.06 KB
/
basics.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Homepage NYSL</title>
<link rel="stylesheet" href="assets/main.css">
</head>
<body>
<header>
<img src="assets/images/nysl_logo.png" alt="the nysl logo" class="logo" />
<h1>Northside Youth Soccer League</h1>
<nav>
<a href="basics.html">Home</a>
<a href="about.html"> | About</a>
<a href="contact.html"> | Contact</a>
<a href="gameinfo.html"> | GameInfo</a>
<a href="nyslrules.html"> | NYSLrules</a>
</nav>
</header>
<div class="headline">
<h2>Upcoming Events</h2></div>
<div class="gradient">
<aside>
<img src="assets/images/soccer_image1.jpg" alt="Image1" />
</aside>
<section>
<p><em>August 4</em> NYSL Fundraiser</p>
<p><em>August 16</em> Season Kick-off: Meet the Teams</p>
<p><em>September 1</em> First Game of the Season (Check Game Schedule for details)</p>
</section>
</div>
</body>
</html>