generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
124 lines (103 loc) · 4.67 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
120
121
122
123
124
<!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">
<meta name="description" content="Love 2 Cook - Cooking Recipes that won't break the bank">
<meta name="keywords" content="cooking, beginner, recipes, budget">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" href="assets/img/frying-pan-icon.png">
<title>Love 2 Cook</title>
</head>
<body>
<header>
<a href="index.html">
<h1 id="logo" >
<img id="icon" src="assets/img/frying-pan-icon.png" alt="Frying Pan Icon">Love 2 Cook
</h1>
</a>
<nav>
<div id="header-menu">
<ul id="menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="recipes-main.html" >Recipes</a>
</li>
<li>
<a href="contact.html" class="active">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<section id="contact-section">
<h2 id="recipe-h2">Contact</h2>
<hr class="hr-thick">
<div id="contact-form-left">
<h3>Got a question or recipe suggestion?</h3><br>
<p>If you have a question about a specific recipe, or would like to suggest one not currently available, the fastest way to get a response is to ask via the contact form here.<br>
Instagram, Facebook and Twitter are also great ways to contact us as they're checked daily, that makes them great options for a quick response.<br>
Thanks guys and we look forward to hearing from you!
</p>
</div>
<div id="contact-form-right">
<form action="validation.html">
<div class="form-group">
<label for="fname">First name: </label><br>
<input type="text" id="fname" name="fname" required>
</div>
<div class="form-group">
<label for="lname">Last name: </label><br>
<input type="text" id="lname" name="lname" required>
</div>
<div class="form-group">
<label for="email">Email: </label><br>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<p>Purpose for contact?</p>
<label for="question">Question</label>
<input class="question" name="contact-purpose" value="question" type="radio">
<label for="suggestion">Suggestion</label>
<input class="question" name="contact-purpose" value="suggestion" type="radio">
</div>
<div class="form-group">
<label for="contact-desc">Please add your questions/comments/recipe suggestions below.</label>
<br>
<textarea id="contact-desc" rows="4" cols="50" name="contact-desc" required></textarea>
</div>
<div>
<input type="submit" value="Submit" id="submit-button">
</div>
</form>
</div>
</section>
<footer>
<h2 class="socials-note">Find us on our Social Accounts</h2>
<hr class="hr-thick">
<ul class="socials">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener"
aria-label="Visit our Youtube page (opens in a new tab)"><i class="fab fa-youtube"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/0dd576827f.js" crossorigin="anonymous"></script>
</body>
</html>