-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
119 lines (107 loc) · 4.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Get In Touch | Sanctuary Helpers</title>
<script src="https://kit.fontawesome.com/b328a1c9de.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicons/favicon-16x16.png">
<link rel="manifest" href="assets/favicons/site.webmanifest">
<link href="https://fonts.googleapis.com/css?family=Kumar+One|Kumar+One+Outline|Lato:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<!-- header -->
<header class="contact-header">
<div class="wrapper">
<!-- nav -->
<nav>
<div class="logo">
<a href="index.html">
<h3>Sanctuary Helpers</h3>
</a>
</div>
<label for="menu-toggle">
<i class="fa fa-bars" aria-label="Website Menu"></i>
</label>
<input type="checkbox" id="menu-toggle" name="menu-toggle">
<ul class="header-nav">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="blog.html#about">About</a>
</li>
<li>
<a href="blog.html">Blog</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<h1 class="contact-h1">Get In Touch</h1>
</div>
</header>
<!-- main -->
<main class="contact-main">
<div class="wrapper">
<!-- form -->
<div class="form">
<form action="submit">
<label for="name" class="visually-hidden">Name</label>
<input type="text" name="name" id="name" class="name" placeholder="Name" required>
<label for="email" class="visually-hidden">Email address</label>
<input type="email" name="email" id="email" placeholder="Email address" required>
<label for="text-area" class="visually-hidden">Comments</label>
<textarea name="message" id="message" placeholder="Message" cols="15" rows="8" required></textarea>
<button type="submit" class="submitButton">Submit</button>
</form>
</div>
<!-- contact info -->
<section class="contact-links">
<!-- social media -->
<nav class="social">
<ul>
<li>
<a href="http://www.facebook.com" aria-label="Go to Sanctuary Helpers' Facebook page">
<i class="fab fa-facebook-f" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="http://www.instagram.com" aria-label="Go to Sanctuary Helpers' Instagram page">
<i class="fab fa-instagram" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="http://www.twitter.com" aria-label="Go to Sanctuary Helpers' Twitter feed">
<i class="fab fa-twitter" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="http://www.whatsapp.com" aria-label="Contact Sanctuary Helpers via WhatsApp">
<i class="fab fa-whatsapp" aria-hidden="true"></i>
</a>
</li>
</ul>
</nav>
<a href="mailto:[email protected]" class="email">[email protected]</a>
<div class="phone-address">
<a href="tel:123-456-7890" class="phone">123 - 456 - 7890</a>
<p>123 Queen Street West,</p>
<p>Unit 10</p>
<p>Toronto, Ontario</p>
<p>M5V 2D5</p>
</div>
</section>
</div>
</main>
<!-- footer -->
<footer>
<p>Copyright © 2019 HackerYou</p>
</footer>
</body>
</html>