-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
66 lines (55 loc) · 2.38 KB
/
Copy pathcontact.html
File metadata and controls
66 lines (55 loc) · 2.38 KB
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
61
62
63
64
65
66
<!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">
<title>Get In Touch</title>
<script src="https://kit.fontawesome.com/663bc49833.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles/style.css">
</head>
<body class="contactBody">
<header class="contactHeader">
<div class="wrapper">
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<h1 class="contactH1">Get In Touch</h1>
</div>
</header>
<main>
<div class="wrapper contactMain">
<div>
<i class="fab fa-facebook-f"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-whatsapp"></i>
<h3 class="email">info@email.com</h3>
<p>123 - 456 - 7890</p>
<p>123 Queen Street West, Unit 10</p>
<p>Toronto, Ontario</p>
<p>M5V2D5</p>
</div>
<div class="contactForm">
<form action="#" method="#" class="commentForm" name="commentForm">
<label for="userName" class="sr-only">Enter your name:</label>
<input type="text" id="userName" name="userName" class="nameBox input" placeholder="Name">
<label for="userEmail" class="sr-only">Enter your email:</label>
<input type="email" id="userEmail" name="userEmail" class="emailBox input" placeholder="Email address">
<label for="userMessage" class="sr-only">Enter your message:</label>
<textarea name="userMessage" id="userMessage" class="messageBox input" placeholder="Message" cols="100" rows="10"></textarea>
<button>Submit</button>
</form>
</div>
</div>
</main>
<footer>
<p>Copyright © 2021 Juno College</p>
</footer>
</body>
</html>