-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
105 lines (98 loc) · 4.6 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
<!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>Beachstay - Contact</title>
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700|Playfair+Display+SC:700i" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin="anonymous">
<link rel="html" href="index.html">
<link rel="html" href="blog.html">
<link rel="stylesheet" href="styles/main.css">
</head>
<body class="contact">
<header id="home">
<div class="fullbleed">
<nav class="nav">
<div class="wrapper">
<div class="main-nav flex-row">
<h2><a href="index.html#home">Beachstay</a></h2>
<ul class="menu">
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="#home">Contact</a></li>
<span class="sr-only">close nav menu</span>
<li class="close-menu"><i class="fas fa-times"></i></li>
</ul>
<span class="sr-only">toggle nav menu</span>
<a class="hamburger-nav"><i class="fas fa-bars"></i></a>
</div>
</div>
</nav>
<div class="wrapper">
<h1>Get in touch</h1>
</div>
</header>
<main>
<!-- section with the form -->
<section>
<form action="" method="post" name="contact-us" class="contact-form">
<div class="form-wrapper">
<fieldset class="flex-row">
<legend class="visuallyhidden">Send us a message</legend>
<label for="name" class="visuallyhidden">Name</label>
<input type="text" name="name" id="name" placeholder="Name" required>
<label for="email" class="visuallyhidden">Email Address</label>
<input type="email" name="email" id="email" placeholder="Email address" required>
<label for="message" class="visuallyhidden">Message</label>
<textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea>
<button>Submit</button>
</fieldset>
</div>
</form>
</section>
</main>
<!-- side bar -->
<div class="contact-list flex-row">
<aside>
<ul>
<li aria-hidden="true">
<span class="sr-only">Link to Facebook</span>
<a href="https://www.facebook.com"><i class="fab fa-facebook-f"></i></a>
</li>
<li aria-hidden="true">
<span class="sr-only">Link to Instagram</span>
<a href="https://www.instagram.com"><i class="fab fa-instagram"></i></a>
</li>
<li aria-hidden="true">
<span class="sr-only">Link to Twitter</span>
<a href="https://www.twitter.com"><i class="fab fa-twitter"></i></a>
</li>
<li aria-hidden="true">
<span class="sr-only">Link to WhatsApp</span>
<a href="https://web.whatsapp.com"><i class="fab fa-whatsapp"></i></a>
</li>
</ul>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<ul class="contact-info">
<li>123 - 456 - 7890</li>
<li>123 Queen Street West</li>
<li>Unit 10</li>
<li>Toronto, Ontario</li>
<li>M5V2D5</li>
</ul>
</ul>
</aside>
</div>
<!-- Footer starts here -->
<footer id="footer">
<p>Copyright © 2019 HackerYou</p>
</footer>
<script src='https://code.jquery.com/jquery-3.2.1.min.js' integrity='sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4='
crossorigin='anonymous'></script>
<script src='navbar.js'></script>
</body>
</html>