-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
60 lines (58 loc) · 2.31 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
<link rel="stylesheet" href="styles/dropdown.css">
<link rel="stylesheet" href="styles/structure.css">
<link rel="stylesheet" href="styles/tone.css">
<link rel="stylesheet" href="styles/content.css">
<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=Raleway:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/7ce960fd0f.js" crossorigin="anonymous"></script>
<!--thanks font awesome for these beautiful icons-->
<title>Polaris Epsilon</title>
</head>
<body>
<nav>
<div class="content">
<a href="index.html" class="img item"><img src="images/logo.png" alt="Logo" width="64px"></a>
<div class="navgroup primary">
<div class="grouplabel" tabindex="0">Explore<i class="fas fa-chevron-down"></i></div>
<div class="groupcontent">
<div class="item"><a href="index.html">Home</a></div>
<div class="item"><a href="events.html">Events</a></div>
<div class="item"><a href="classes.html">Classes</a></div>
<div class="item"><a href="contact.html">Contact Us</a></div>
</div>
</div>
</div>
</nav>
<main>
<div class="contentcard focus">
<h2>Contact Us</h2>
<p>
Email: <a href="mailto:[email protected]">[email protected]</a>
</p>
<p>
Phone: <a href="tel:+11234567890">123-456-7890</a>
</p>
<p>
We look forward to hearing from you!
</p>
</div>
</main>
<footer>
<div class="content">
<div>
<em>Disclaimer</em><br>
This site was created for educational purposes. This is not a real company and you cannot purchase any services suggested here.
</div>
<div class="copyright">
©2021 Easton Swenson and Isaac Lewis. All rights reserved.
</div>
</div>
</footer>
</body>
</html>