-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
121 lines (101 loc) · 5.16 KB
/
Copy pathindex.php
File metadata and controls
121 lines (101 loc) · 5.16 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
<!Doctype HTML>
<html>
<head>
<title>NEPAL TOUR</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="fonts/font-awesome-4.5.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="css/main.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="container">
<!-- Header -->
<div class="row header">
<!-- Logo with NavBar -->
<div class="row navigation">
<div class="col-md-4 logo float-left">
<h1><a href="index.php">nepal tour</a></h1>
</div>
<div class="row" class="float-left">
<a href="login.php">
<div class="col-md-offset-10 login">
login
</div>
</a>
<div class="row ">
<div class="col-md-offset-7">
<nav>
<?php
$menu_texts = array(
"index.php" => "Home",
"services.php"=>"Services",
"downloads.php" => "Downloads",
"gallery.php"=>"Gallery",
"contact.php"=>"Contact Us"
);
$dropdown = array(
"guide.php"=>"Guide","hotel.php"=>"Hotels","tickets.php"=>"Tickets",
);
?>
<?php
echo"<ul class=\"nav navbar-pills nav-pills\">";
foreach ($menu_texts as $index => $text) {
if ($index == "services.php") {
echo"<li class =\"dropdown\">";
echo"<a href=\"#\" class=\"dropbtn\">" . $text . "</a>";
echo"<div class=\"dropdown-content\">";
foreach ($dropdown as $dd=>$down) {
echo"<a href=\"". $dd ."\">" . $down . "</a>";
}
echo"</div>";
echo"</li>";
} else {
echo "<li><a href =\" " . $index . "\">" . $text . "</a></li>";
}
}
echo"</ul>";
?>
</nav>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<div class="banner">
<img src="images/annapurna.png" alt=""/>
</div>
</div>
<!-- Quick Access -->
<div class="row quick-access">
<div class="col-md-offset-3">
<div class="image float-left">
<a href="travel.php"><img src="images/Travel.jpg" alt="Travel" height="150px" width="170px" class="img-circle float-left"/>
<p class="text">Travel</p></a>
</div>
<div class="image float-left">
<a href="hotel.php"><img src="images/hotel.jpg" alt="Hotel" height="150px" width="170px" class="img-circle float-left"/>
<p class="text">Hotel</p></a>
</div>
<div class="image float-left">
<a href="guide.php"><img src="images/Guide.png" alt="Guide" height="150px" width="170px" class="img-circle guides float-left"/>
<p class="text">Guide</p></a>
</div>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
<!-- Location Map -->
<div class="row location">
<div class="col-md-7">
<img src="images/map.png" alt="maps" class="map-nav"/>
</div>
<div class="col-md-5">
<p>We provide maps get one for you by signing up <a href="signup.php">here</a></p>
</div>
</div>
<!-- Footer -->
<?php
include 'slice/footer.php';
?>
</div>
</body>
</html>