-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpollination.html
80 lines (68 loc) · 2.43 KB
/
pollination.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
<!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/pollination-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 Pollination</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="services.html">
<h1>Services</h1>
</a>
</div>
<div class="imgbox pollination-imgbox"></div>
<div class="product-info">
<div>
<h2>Pollination</h2>
</div>
<div>
<p>We offer free pollination services. We work with We work with farmers all along the Front Range to find only the best floral sources for our bees. We believe that by finding the best local pollen supplies we are able to provide the best honey.</p>
</div>
<a href="./contact-us.html" class="btn">Have an abundance of flowers? Need a beehive? Contact Us</a>
</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>