-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
48 lines (47 loc) · 1.79 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
<!--
=========================================================
Name: contact.html
Assignment 3
Authors: Joshua Maher (30148153), Yuecheng Sun (30180767)
Submission: Mar 11, 2024
=========================================================
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contacts</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img class="header-logo" src="images/logo.png" alt="A-band logo">
<span class="header-company-name">A-Band</span>
</header>
<div class="navigation-bar">
<a class="navigation-bar-link" href="index.html">Home</a>
<a class="navigation-bar-link" href="products.html">Products</a>
<a class="navigation-bar-link" href="contact.html">Contact</a>
<a class="navigation-bar-link" href="login.html">Login</a>
</div>
<main class="contact-info">
<div>
<h1>Reach Out to Us</h1>
<!--Putting the <a> tag in a div and change the style of <div> does not change the style of the child of it, so skipping <div>-->
<h2>Email</h2>
<span>Email us at: <a class="contact-method" href="mailto:[email protected]">[email protected]</a></span><br>
<h2>Phone</h2>
<span>Call us at: </span><a class="contact-method" href="tel:+1 123-456-7890"> +1 123-456-7890</a><br>
<h2>Social Media</h2>
<span>Contact with us on social media</span><br><br>
<a class="contact-method" href="https://facebook.com">Facebook</a><br>
<a class="contact-method" href="https://instagram.com">Instagram</a><br>
<a class="contact-method" href="https://twitter.com">Twitter</a>
</div>
</main>
<footer>
<p>© 2024 A-Band co. All rights reserved</p>
</footer>
</body>
</html>