-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmainMenu.php
More file actions
executable file
·51 lines (46 loc) · 2.56 KB
/
mainMenu.php
File metadata and controls
executable file
·51 lines (46 loc) · 2.56 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
<div class="panel-top">
<div class="container-fluid">
<div class="row">
<div class="col-lg-3 col-lg-offset-9 col-md-4 col-md-offset-8 col-sm-5 col-sm-offset-7 col-xs-10 col-xs-offset-1 phoneNumber">
<div class="adressAndPhoneBlock">
<div class="tel"><img src="images/icon.svg" alt="phone" width="18" height="18"> <a href="tel:<?php echo $phoneNumber;?>"><?php echo $phoneNumber; ?></a> </div>
<div class="adress"><p>7026 S Sweetwater Rd, Lithia Springs GA 30122, <br>Just 15 minutes from downtown Atlanta, Georgia</p></div>
</div>
</div>
</div>
</div>
</div>
<header class="header" data-type="background" data-speed="0.8">
<div class="heading">
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-lg-offset-1 col-md-4 col-md-offset-1 col-sm-3 col-xs-12">
<div class="logo">
<a href="../"><img src="images/logo.png" alt="logo"></a>
</div>
</div>
<div class="col-md-7 col-sm-9 col-xs-7 mainMenu">
<ul class="nav nav-pills ">
<li><a href="../">SEARCH</a></li>
<li class="sub-menu"><a class="parentMenu">RV RENTALS</a>
<ul class="dropdown">
<li><a href="ourfleet">MOTORHOMES</a></li>
<li><a href="trailers.html">TRAILERS</a></li>
<li><a href="pricing">PRICING</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="package.html">PACKING <br>LIST</a></li>
</ul>
</li>
<li><a href="forsale">FOR SALE</a>
<li class="sub-menu rightcentred"><a class="parentMenu">COMPANY</a>
<ul class="dropdown">
<li><a href="about">ABOUT COMPANY</a></li>
<li><a href="location">LOCATION</a></li>
<li><a href="privacy">PRIVACY <br>POLICY</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>