-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (78 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mighty Ducks Hockey League</title>
<link rel="icon" href="./assets/favicon.ico" type="image/favicon.ico" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav>
<h1 class="page-title">Mighty Ducks Hockey League</h1>
<ul class="navbar-items">
<li><a href="./index.html" class="navbar-item home in">Home</a></li>
<li><a href="./about.html" class="navbar-item about">About</a></li>
<li><a href="./info.html" class="navbar-item info">Info</a></li>
<li><a href="./rules.html" class="navbar-item rules">Rules</a></li>
<li>
<a href="./contact.html" class="navbar-item contact">Contact</a>
</li>
<li>
<a href="./registration.html" class="navbar-item register"
>Register</a
>
</li>
</ul>
</nav>
<div class="banner"></div>
<section>
<h2 class="section-title">Upcoming Events</h2>
<div class="section-container">
<img
src="./assets/Logo_Mighty_ducks-01.png"
alt="Migthy Ducks Logo"
class="logo"
/>
<ul>
<li>
<h2>August 4</h2>
<p>MDSL Fundraiser</p>
</li>
<li>
<h2>August 16</h2>
<p>Season Kick-Off: Meet the teams</p>
</li>
<li>
<h2>September 1</h2>
<p>First game of the season (Check game schedule for details)</p>
</li>
</ul>
</div>
</section>
<section class="gallery">
<h2 class="section-title">Gallery</h2>
<div class="gallery-container">
<img
src="./assets/hockey_1.jpg"
alt="Kid playing hockey"
class="gallery-img"
/>
<img
src="./assets/hockey_2.jpg"
alt="Kid playing hockey"
class="gallery-img"
/>
<img
src="./assets/hockey_3.jpg"
alt="Kids playing hockey"
class="gallery-img"
/>
</div>
</section>
<footer>
<p>© Made with ♡ by tsu</p>
</footer>
</body>
</html>