-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathour-story.html
88 lines (74 loc) · 3.06 KB
/
our-story.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
<!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/our-story-stylesheet.css">
<title>Bower Honey Our Story</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">
<section class="our-story-container">
<div class="our-story-divider">
<h1>Our Story</h1>
</div>
<div class="imgbox beekeeper2-imgbox"></div>
<div class="imgbox beekeeper3-imgbox"></div>
<div class="our-story">
<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>
</div>
<div class="imgbox troop-imgbox"></div>
<div id="as-seen-on-tv" class="as-seen-on-tv">
<h3>Offical Beekeeper Of The Colorado Rockies</h3>
<p>As seen on ESPN, MLB TV, and all the local Rocky Mountain news stations.</p>
<p>"That guys pretty brave."</p>
<div class="video-responsive">
<iframe width="560" height="315" src="https://www.youtube.com/embed/nNJlRXU_rv0?ecver=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="imgbox beekeeper4-imgbox"></div>
<div class="imgbox beekeeper5-imgbox"></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>