-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselection.html
More file actions
129 lines (114 loc) · 4.58 KB
/
Copy pathselection.html
File metadata and controls
129 lines (114 loc) · 4.58 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="stylesheet.css">
<title>AgSelect</title>
</head>
<body>
<header id="navbar">
<div id="LogoContainer">
<img id="logo" src="images/AgSelectLogo.png" alt="logo for AgSelect">
</div>
<div id="ContactUsBox">
<a href="mailto:dhamiliton@greenfundsolutions.com">
<p>dhamiliton@greenfundsolutions.com</p>
</a>
<a href="tel:8336976649">
<p>(833) 697-6649</p>
</a>
<a href="contact.html">
<p>-Book an appointment-</p>
</a>
</div>
<nav>
<a class="navBox" href="index.html">About Us</a>
<a class="navBox" href="contact.html">Contact Us</a>
<a id="SelectedNav" class="navBox" href="selection.html">How We Select</a>
<a class="navBox" href="products.html">Our Products</a>
<a class="navBox" href="articles.html">Our Articles</a>
</nav>
<div id="buttonBox">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
</header>
<div id="page-container">
<div id="content-wrap">
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="navbar-nav">
<li><a>dhamiliton@greenfudnsolutions.com</a></li>
<li><a>(833) 697-6649</a></li>
<li><a href="index.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a id="SelectedDropdownNav" href="selection.html">How We Select</a></li>
<li><a href="products.html">Our Products</a></li>
<li><a href="articles.html">Our Articles</a></li>
</ul>
</div>
<div class="container">
<div id="SelectionContainer">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="images/photo-1539575344446-34d43ec355d8.jpg" alt="Chicago" style="width:100%;">
<div class="carousel-caption">
We want to know exactly where your food is coming from. We visit the producer locations to ensure the product you purchase is of the highest quality and production standards.
</div>
</div>
<div class="item">
<img src="images/photo-1471193945509-9ad0617afabf.jpg" alt="Los Angeles" style="width:100%;">
<div class="carousel-caption">
We offer a multitude of organic, gmo-free, and local vegetables, private label, and more.
</div>
</div>
<div class="item">
<img src="images/photo-1530860230002-bb67fbabe1ea.jpg" alt="People having a toast over dinner" style="width:100%;">
<div class="carousel-caption">
With AgSelect you will be offering your customers the finest products available.
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<footer>
<div id="FooterInfo">
<p>dhamiliton@greenfundsolutions.com</p>
<p>(833) 697-6649</p>
<p>Book an appointment</p>
</div>
<div id="ParentCompanyLogoContainer">
<p>Copyright © 2018 AgSelect - All Rights Reserved.</p>
<p>Website design by Trayvon Northern and Christopher Baunach</p>
<a href="https://greenfundsolutions.com" target="_blank"><img id="ParentCompanyLogo" src="images/GreenFundLLCLogo.png" alt="logo for GreenFundLLC" /></a>
<p>Our Parent Company - Copyright © 2018 Green Fund - All Rights Reserved.</p>
</div>
</footer>
</div>
<script src="CollapsibleNav.js"></script>
</body>
</html>