-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.html
97 lines (81 loc) · 2.94 KB
/
contact-us.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
<!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 href="https://fonts.googleapis.com/css?family=ABeeZee:400,400i|Crete+Round:400,400i&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./styles/contact-us-stylesheet.css">
<title>Bower Honey Recipes</title>
</head>
<body>
<!-- Header and Nav Start -->
<header>
<div class="header-container">
<img src="./images/Bower-Honey-Co-Logo-WEB.png" alt="Bower Honey Company" class="logo">
<p class="tagline">Colorado Sourced Honey Since 1990</p>
<input type="checkbox" id="nav-toggle" class="nav-toggle">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="recipes.html">Recipes</a></li>
<li><a href="our-story.html">Our Story</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</ul>
</nav>
<label for="nav-toggle" class="nav-toggle-label">
<span></span>
</label>
</div>
</header>
<!-- Insert little nav relative menu here? -->
<!-- Body Start -->
<div class="body-container">
<div class="contact-container">
<div class="contact-us-divider">
<h1>Contact Us</h1>
</div>
<div class="contact-form">
<form action="action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your first name...">
<div></div>
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name...">
<div></div>
<label for="pnumber">Phone number</label>
<input type="text" id="pnumber" name="pnumber" placeholder="Your Phone Number...">
<div></div>
<label for="country">Country</label>
<select id="country" name="country">
<option value="usa">USA</option>
<option value="australia">Australia</option>
<option value="canada">Canada</option>
</select>
<div></div>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something..." style="height:200px"></textarea>
<div></div>
<input type="submit" value="Submit">
<div></div>
</form>
</div>
</div>
</div>
<!-- Info Section -->
<section class="info">
<div>
<h2>Proud Members of the Colorado Beekeepers Association</h2>
<p>Instereted in wholesale?</p>
<a href="./contact-us.html" class="btn">Contact Us</a>
</div>
</section>
<!-- Footer -->
<footer>
<p>Babs Labs Creative</p>
<p>© 2018 - 2020</p>
</footer>
</body>
</html>