-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.3 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
<!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" />
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon"/>
<title>Home</title>
</head>
<body>
<header>
<figure>
<img src="./assets/Logo_Mighty_ducks-01.png" alt="Logo Mighty Ducks" height="200" />
</figure>
<h1>Mighty Ducks Hockey League</h1>
</header>
<nav>
<a href="./index.html">Home </a>|
<a href="./about.html">About MDHL</a>|
<a href="./contact.html">Contac</a>
</nav>
<main>
<figure>
<img src="./assets/hockey_1.jpg" alt="Hockey 1" height="200" />
</figure>
<article>
<h3>Upcoming Events</h3>
<section>
<h4>August 4</h4>
<p>MDSL Fundraiser</p>
</section>
<section>
<h4>August 16</h4>
<p>Season Kick-off: Meet the Teams</p>
</section>
<section>
<h4>September 1</h4>
<p>First Game of the Season (Check Game Schedule for details)</p>
</section>
</article>
</main>
</body>
</html>