-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
45 lines (40 loc) · 1.88 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!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/img/favicon.ico" type="image/x-icon">
<title>Contact MD Hockey League</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,200;0,400;0,600;1,200&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/styles/style1.css">
<!--<link rel="stylesheet" href="./assets/styles/style2.css">
<link rel="stylesheet" href="./assets/styles/style3.css">-->
</head>
<body>
<header>
<h1>Mighty Ducks Hockey League</h1>
<img src="../assets/img/Logo_Mighty_ducks_01.png" alt="logo of MDHL" width="100" height="100">
</header>
<nav>
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
<a href="./contact.html">Contact</a>
</nav>
<main>
<h2>Contact</h2>
<div class>
<p>Please email us at <a href="mailto:[email protected]">[email protected]</a></p>
<p>We reply to your email as soon as we can.</p>
</div>
</main>
</body>
</html>