-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (121 loc) · 5.53 KB
/
index.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
125
126
127
128
129
130
131
132
133
134
135
136
<!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="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../images/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<title>Bower Honey Company</title>
<link rel="stylesheet" href="./styles/stylesheet.css">
</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 Container/Content Start -->
<div class="body-container">
<!-- Top Container -->
<section class="top-container">
<div class="showcase">
<h1>Natural Colorado Honey</h1>
<a href="./products.html" class="btn">Shop Now</a>
</div>
<div class="top-box top-box-a">
<h4>New Product</h4>
<p class="price">Lip Balm</p>
<a href="lip-balm.html" class="btn">Buy Now</a>
</div>
<div class="top-box top-box-b">
<h4>We Offer</h4>
<p class="price">Free Swarm Removal</p>
<a href="./swarm-removal.html" class="btn">Read More</a>
</div>
</section>
<!-- Boxes Section -->
<section class="boxes">
<div class="divider-dk">
<h2>Sourced Along The Front Range.</h2>
<p>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>
<a href="./our-story.html" class="btn">Our Story</a>
</div>
<div class="imgbox inside-the-hive"></div>
<div class="box-a">
<h3>Family Owned and Operated.</h3>
<p>The Bower family has been in the honey business for over twenty-years. Starting with leftover equipment from defunct Boy Scouts of America beekeeping program, David Bower and his sons established a half dozen bee yards all along the front range
and began selling at local farmers markets. The last two decades have not been without a few issues such as tornadoes, fires, and of course bears.</p>
<a href="./our-story.html" class="btn-b">Read More</a>
</div>
<div class="box-b">
<h3>We rescue all of our bees.</h3>
<p>We work with fire, police, and local city departments all around the Denver metro area to rescue our bees. We recover the bees using a specialized low suction vacume to ensure the bees are unharmed in the rehousing process.</p>
<a href="./swarm-removal.html" class="btn-b">Swarm Removal</a>
</div>
<div class="imgbox beekeeper"></div>
<div class="imgbox pancakes"></div>
<div class="box-c">
<h3>Cooking and Baking with Honey</h3>
<p>For thousand of years humans have been using honey as an all natural sweetener. Archaeologists have found honey and beeswax in the tombs of pharaohs and honey can currently be found in the galley of the International Space Station. We cook with
honey all the time and share our favorite Colorado honey recipes here.</p>
<a href="./recipes.html" class="btn-b">Read Recipes</a>
</div>
<div class="divider-dk2">
<h2>Offical Beekeeper Of The Colorado Rockies</h2>
<p>As seen on ESPN, MLB TV, and all the local Rocky Mountain news stations.</p>
<a href="./our-story.html#as-seen-on-tv" class="btn">See The Video</a>
</div>
</section>
<!-- Portfolio -->
<section class="Portfolio">
<img src="../images/portfolio1.jpg" alt="">
<img src="../images/portfolio2.jpg" alt="">
<img src="../images/portfolio3.jpg" alt="">
<img src="../images/portfolio4.jpg" alt="">
<img src="../images/portfolio5.jpg" alt="">
<img src="../images/portfolio6.jpg" alt="">
<img src="../images/portfolio7.jpg" alt="">
<img src="../images/portfolio8.jpg" alt="">
<img src="../images/portfolio9.jpg" alt="">
<img src="../images/portfolio10.jpg" alt="">
</section>
<!-- 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 Container End -->
</div>
</body>
</html>