-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage_review.php
More file actions
171 lines (120 loc) · 6.54 KB
/
package_review.php
File metadata and controls
171 lines (120 loc) · 6.54 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
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
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Tour_Package_All_Reviews</title>
<link rel='stylesheet' type='text/css' media='screen' href='css/GuideAllReviews.css'>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/top_bar.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body class="packagereviewbody">
<?php include('inc/top_bar.php'); ?>
<div class="wrapper">
<div class="split_left" >
<img src="img/reviewimg.jpg">
<h3>Guide name</h3>
<h3>Package name</h3>
</div><!--split_left-->
<div class="box rating">
<table>
<tr>
<div class="star 4">
<td>
<div class="star-container">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div><!--star-container-->
</td>
<td>
<div class="bar-container">
<div class="bar-4">
</div>
</div><!--bar-container-->
</td>
</div><!--star 4-->
</tr>
<tr>
<div class="star 3">
<td>
<div class="star-container">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div><!--star-container-->
</td>
<td>
<div class="bar-container">
<div class="bar-3">
</div>
</div><!--bar-container-->
</td>
</div><!--star 3-->
</tr>
<tr>
<div class="star 2">
<td>
<div class="star-container">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div><!--star-container-->
</td>
<td>
<div class="bar-container">
<div class="bar-2">
</div>
</div><!--bar-container-->
</td>
</div><!--star 2-->
</tr>
<tr>
<div class="star 1">
<td>
<div class="star-container">
<span class="fa fa-star checked"></span>
</div><!--star-container-->
</td>
<td>
<div class="bar-container">
<div class="bar-1">
</div>
</div><!--bar-container-->
</td>
</div><!--star 1-->
</tr>
</table>
</div><!--star_rating-->
<div class="reviews">
<div class="box review">
<h5>Kavindya Devindi</h5>
<p>
The trip was amazing, a once in a lifetime opportunity and trip. My sister and I spent 16 days in Italy for her high school graduation trip, and we had an unparalleled experience. We went from Venice to Florence/Tuscany to Cinque Terre to Sorrento to Rome. Everything in each city and in between was incredible.
</p>
</div><!--box review-->
<div class="box review">
<h5>Dinendra Bandara</h5>
<p>
The trip was amazing, a once in a lifetime opportunity and trip. My sister and I spent 16 days in Italy for her high school graduation trip, and we had an unparalleled experience. We went from Venice to Florence/Tuscany to Cinque Terre to Sorrento to Rome. Everything in each city and in between was incredible.
</p>
</div><!--box review-->
<div class="box review">
<h5>Sulakshani Theja</h5>
<p>
The trip was amazing, a once in a lifetime opportunity and trip. My sister and I spent 16 days in Italy for her high school graduation trip, and we had an unparalleled experience. We went from Venice to Florence/Tuscany to Cinque Terre to Sorrento to Rome. Everything in each city and in between was incredible.
</p>
</div><!--box review-->
<div class="box review">
<h5>Piyumi Dulanjali</h5>
<p>
The trip was amazing, a once in a lifetime opportunity and trip. My sister and I spent 16 days in Italy for her high school graduation trip, and we had an unparalleled experience. We went from Venice to Florence/Tuscany to Cinque Terre to Sorrento to Rome. Everything in each city and in between was incredible.
</p>
</div><!--box review-->
</div><!--reviews-->
<div class="reviewend"><?php include('inc/footer.php'); ?> </div>
</div><!--wrapper-->
</body>
</html>