-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhoney-comb.html
115 lines (103 loc) · 3.69 KB
/
honey-comb.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
<!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" type="text/css" href="./styles/honey-comb-stylesheet.css">
<link href="https://fonts.googleapis.com/css?family=ABeeZee:400,400i|Crete+Round:400,400i&subset=latin-ext" rel="stylesheet">
<title>Bower Honey Comb</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>
<!-- Body Start -->
<div class="body-container">
<!-- Services Section Start -->
<section class="product-shop-container">
<div class="products-divider">
<a href="./products.html">
<h1>Products</h1>
</a>
</div>
<div class="imgbox honey-comb-imgbox"></div>
<div class="product-info">
<div>
<h2>Honeycomb</h2>
</div>
<form action="action_page.php">
<label for="type">Type</label>
<div></div>
<select id="type" name="type">
<option value="clover">Clover</option>
<option value="pint">Cherry Blossom</option>
<option value="half-pint">Wildflower</option>
<option value="quarter-pint">Alfalfa</option>
</select>
<div></div>
<form action="action_page.php">
<label for="size">Size</label>
<div></div>
<select id="size" name="size">
<option value="large">Large (20oz) $20.00</option>
<option value="medium">Medium (12oz) $16.00</option>
<option value="small">Small (8oz) $10.00</option>
</select>
<div></div>
<form action="action_page.php">
<label for="quantity">Quantity</label>
<div></div>
<select id="quantity" name="quantity">
<option value="one">One</option>
<option value="two">Two</option>
<option value="three">Three</option>
<option value="four">Four</option>
<option value="five">Five</option>
<option value="six">Six</option>
<option value="bakers-dozen">A Bakers Dozen</option>
</select>
<div></div>
<label for="subject">Extra Comments</label>
<div></div>
<textarea id="subject" name="subject" placeholder="Extra Comments, Delivery Instructions, or Requests..." style="height:200px"></textarea>
<div></div>
<input type="submit" value="Add To Cart">
<div></div>
</form>
</div>
</section>
</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>