-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (127 loc) · 4.15 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pacific Pipe Co.</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/app.css" />
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<script src="js/vendor/modernizr.js"></script>
<script type="text/javascript" src="//use.typekit.net/efa7oev.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<!--nav-->
<div class="contain-to-grid">
<div class="white">
<a href="index.html"><img class="logo show-for-small-only" src="img/logo.png"></a>
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name active">
<a href="index.html"><img class="logo hide-for-small-only" src="img/logo.png"></a>
</li>
<li class="toggle-topbar menu-icon"><a href="#">Menu</a></li>
</ul>
<section class="top-bar-section">
<!-- Left Nav Section -->
<ul class="left">
<li><a href="#">About Us</a></li>
<li class="divider"></li>
<li><a href="#">Projects</a></li>
<li class="divider"></li>
<li class="has-dropdown">
<a href="products.html">Products</a>
<ul class="dropdown">
<li><a href="waterworks.html">Waterworks</a></li>
<li><a href="irrigation.html">Irrigation</a></li>
<li><a href="golf.html">Golf</a></li>
<li><a href="agriculture.html">Agriculture</a></li>
</ul></li>
<li class="divider"></li>
<li class="divider"></li>
<li><a href="#">Calendar</a></li>
<li class="divider"></li>
</ul>
<!-- Right Nav Section -->
<ul class="right">
<li class="divider"></li>
<li><a href="#">Contact Us</a></li>
</ul>
</ul>
</section>
</nav>
</div>
<!--/nav-->
<div class="search-bar">
<div class="medium-6 columns"></div>
<div class="medium-6 columns">
<h2 class="abril"><a href="agriculture.html">Agriculture.</a> <a href="irrigation.html">Irrigation.</a> <a href="waterworks.html">Waterworks.</a></h2>
</div>
</div>
<div class="row interior nomargin">
<div class="home-hero hide-for-small-only">
<div class="row interior">
<div class="small-12 columns topmargin1">
<h1 class="hero-type">Trusted solutions.</h1>
</div>
<div class="small-12 columns ">
<h1 class="hero-type text-right">Dedicated delivery.</h1>
</div>
</div>
</div>
</div>
<div class="row interior">
<div class="medium-4 columns text-center">
<div class="about-front">
</div>
</div>
<div class="medium-4 columns text-center">
<div class="projects-front">
</div>
</div>
<div class="medium-4 columns text-center">
<div class="vendors-front">
</div>
</div>
<!--3 buttons-->
<div class="row interior brand">
<div class="medium-4 columns">
<div class="front-field">
<img class="about-button" src="img/about_button.png">
<h4 class="text-center">Who We Are</h4>
<hr class="small-thick">
<p>Meet our team members and find out what sets us apart from other distributors.</p>
</div>
</div>
<div class="medium-4 columns">
<div class="front-field">
<img class="about-button" src="img/projects_button.png">
<h4 class="text-center">Success Stories</h4>
<hr class="small-thick">
<p>Take a look at some of our past projects we’ve helped make possible and imagine what we could do for you.</p>
</div>
</div>
<div class="medium-4 columns">
<a href="products.html">
<div class="front-field">
<img class="about-button" src="img/vendors_button.png">
<h4 class="text-center">Our Products</h4>
<hr class="small-thick">
<p>Browse acategorized list of all the products that are supplied by our world class manufacturers.</p>
</div>
</a>
</div>
</div></div>
<!--updates-->
<div class="row interior white updates">
<div class="medium-6 columns">
<h4 class="text-center">Updates</h4></div>
<h4 class="text-center">Upcoming Events</h4></div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>