-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
31 lines (31 loc) · 1.24 KB
/
contact.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
<!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="stylesheet" href="./styles/styles.css">
<title>Mighty Ducks Hockey League - Contact</title>
</head>
<body class="flex orange">
<header class="flex">
<h1 class="flex jCenter totalWidth">Mighty Ducks Hockey League</h1>
<nav class="flex jSpaceBe totalWidth">
<a href="index.html" class="flex aCenter jCenter orangeTr">HOME</a>
<a href="about.html" class="flex aCenter jCenter orangeTr">ABOUT MDHL</a>
<a href="#" class="flex aCenter jCenter orangeTr">CONTACT</a>
</nav>
<h2 class="flex aCenter jCenter totalWidth subtitle">CONTACT US</h2>
</header>
<main>
<article>
<h3>Please email us at <a href="mailto:[email protected]">[email protected]</a></h3>
<p>We will reply to your email as soon as we can.</p>
</article>
</main>
<footer class="totalWidth flex jCenter">
<img src="./files/tiraHockey.png" alt="hockey">
<img src="./files/tiraHockey.png" alt="hockey">
</footer>
</body>
</html>