-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
57 lines (57 loc) · 1.73 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
<!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" />
<script
src="https://kit.fontawesome.com/0499a3b8f3.js"
crossorigin="anonymous"
></script>
<title>Contact Us</title>
</head>
<body>
<header class="contactHeader">
<nav class="navBar wrapper">
<ul>
<l1><a href="index.html">Home</a></l1>
<l1><a href="#">About</a></l1>
<l1><a href="blog.html">Blog</a></l1>
<l1><a href="contact.html">Contact</a></l1>
</ul>
</nav>
<h2>Get in Touch</h2>
</header>
<section class="ourContact">
<div>
<p>
<i class="fa-brands fa-facebook-f fa-xl"></i>
<i class="fa-brands fa-instagram fa-xl"></i>
<i class="fa-brands fa-twitter fa-xl"></i>
<i class="fa-solid fa-phone fa-xl"></i>
</p>
<h4>[email protected]</h4>
<p>123-456-7890</p>
<p>123 Queen Street West, Unit 10</p>
<p>Torono, Ontario</p>
<p>M5V D25</p>
</div>
<div class="contactComments">
<form action="#" class="commentBox">
<input type="text" id="name" placeholder="name" />
<input type="email" id="email" placeholder="email" />
<textarea
name="comments"
id="comments"
cols="30"
rows="10"
placeholder="comments"
></textarea>
<button class="contactSubmit">Submit</button>
</form>
</div>
</section>
<footer>Copyright © HackerYou</footer>
</body>
</html>