-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSydney Community Sports League.html
More file actions
37 lines (37 loc) · 1.04 KB
/
Sydney Community Sports League.html
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sydney Community Sports League</title>
<link rel="stylesheet" href="css/sydney-sports-styles.css">
</head>
<body>
<header>
<h1>Sydney Community Sports League</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Schedule</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="sports-news">
<h2>Latest News</h2>
<p>Exciting finals coming up this weekend!</p>
</section>
<aside class="upcoming-events">
<h2>Upcoming Events</h2>
<ul>
<li>Cricket Finals - April 30</li>
<li>Rugby League Begins - May 5</li>
</ul>
</aside>
</main>
<footer>
<p>© 2024 Sydney Community Sports League</p>
</footer>
</body>
</html>