-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
49 lines (46 loc) · 1.62 KB
/
contact.html
File metadata and controls
49 lines (46 loc) · 1.62 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
<!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">
<link rel="stylesheet" href="./css/index.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>Contact</title>
</head>
<body>
<nav>
<a href="home.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="recipes.html">Recipes</a>
<a href="https://ch0w.now.sh/register" class="button">Sign Up</a>
</nav>
<section class="contact-page-top">
<h1>Contact Us</h1>
<p>We would love to hear from you.</p>
</section>
<section class="contact-cards">
<div>
<h1>Email</h1>
<p>Send us any questions you have and we will respond ASAP.
</p>
<button class="button">Send Email</button>
</div>
<div>
<h1>Follow us on social media</h1>
<p>Do you have a Facebook, Instagram, or Twitter account?
</p>
<button class="button">Follow us!</button>
</div>
</section>
<footer>
<a href="home.html">Home</a>
<a href="about.html">About</a>
<a href="recipes.html">Recipes</a>
<a href="contact.html">Contact</a>
<a href="https://ch0w.now.sh/register" class="button">Sign Up</a>
</footer>
</body>
</html>