-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.62 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.62 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
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Mighty Ducks Hockey League Home </title>
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<link rel="stylesheet" href="./assets/styles.css">
</head>
<body>
<header>
<h1> Mighty Ducks Hockey League </h1>
<nav>
<a href="#"> Home </a>
<a href="./about.html"> About MDHL </a>
<a href="./contact.html"> Contact </a>
<a href="./game.html"> Game Information</a>
<a href="./rules.html">Rules</a>
<a href="./form.html">Registration</a>
</nav>
<div class="banner"></div>
</header>
<main>
<article>
<div class="title-box">
<h2 class="h2animation">Upcoming Events</h2>
</div>
<div class="flex-row-cent">
<img class="align" id="logo" src="./assets/logo_Mighty_ducks-01.png" alt="team logo" height="200">
<div id="text">
<h3 class="left-title">August 4</h3>
<p>MDSL Fundraiser</p>
<h3 class="left-title">August 16</h3>
<p>Season Kick-off: Meet The Teams</p>
<h3 class="left-title">September 1</h3>
<p>First Game of The Season (Check Game Schedule for details)</p>
</div>
<img class="align" id="player-img" src="./assets/hockey_1.jpg" alt="hockey player" height="200">
</div>
</article>
</main>
</body>
</html>