-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.aspx
144 lines (138 loc) · 7.62 KB
/
faq.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/Travelz.master" AutoEventWireup="true" CodeFile="faq.aspx.cs" Inherits="faq" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<!--====== FAQ ==========-->
<section>
<div class="form form-spac rows">
<div class="container">
<!-- TITLE & DESCRIPTION -->
<div class="spe-title col-md-12">
<h2>Frequency Asked <span>Questions</span></h2>
<div class="title-line">
<div class="tl-1"></div>
<div class="tl-2"></div>
<div class="tl-3"></div>
</div>
<p>World's leading tour and travels Booking website,Over 30,000 packages worldwide. Book travel packages and enjoy your holidays with distinctive experience</p>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 form_1 faq-form wow fadeInLeft" data-wow-duration="1s">
<!--====== THANK YOU MESSAGE ==========-->
<div class="">
<div class="contact__form v2-search-form" method="post" action="">
<div class="alert alert-success contact__msg" style="display: none" role="alert">
Thank you for arranging a wonderful trip for us! Our team will contact you shortly!
</div>
<div class="row">
<div class="input-field col s12">
<asp:TextBox ID="cntname" runat="server" required placeholder="Enter your name"></asp:TextBox>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<asp:TextBox ID="cntphone" runat="server" required placeholder="Enter your phone"></asp:TextBox>
</div>
<div class="input-field col s6">
<asp:TextBox ID="cntemail" runat="server" required placeholder="Enter your email"></asp:TextBox>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<asp:TextBox ID="cntcity" runat="server" required placeholder="Enter your City"></asp:TextBox>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<asp:TextBox ID="cntmsg" type="textarea" runat="server" placeholder="Enter your query " required TextMode="MultiLine" Height="100"></asp:TextBox>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<asp:Button ID="BtnContactPage" runat="server" Text="Contact Now" class="waves-effect waves-light tourz-sear-btn v2-ser-btn" OnClick="BtnContactPage_Click" />
</div>
</div>
</div>
</div>
</div>
<!--====== COMMON NOTICE ==========-->
<div class="col-md-6 col-sm-6 col-xs-12 wow fadeInRight" data-wow-duration="1s">
<div class="rows book_poly">
<h3>Common Notice</h3>
<p>It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages</p>
<ul>
<li>But the majority have suffered alteration in some form, by injected humour</li>
<li>All the Lorem Ipsum generators on the Internet tend to repeat</li>
<li>The generated Lorem Ipsum is therefore always free from repetition</li>
<li>Proof : Id proof mandatory for tour travel</li>
<li>available, but the majority have suffered alteration in some form</li>
<li>It has survived not only five centuries, but also the leap</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--====== TIPS BEFORE TRAVEL ==========-->
<section>
<div class="rows tips tips-home tb-space home_title">
<div class="container tips_1">
<!-- TIPS BEFORE TRAVEL -->
<div class="col-md-4 col-sm-6 col-xs-12">
<h3>Tips Before Travel</h3>
<div class="tips_left tips_left_1">
<h5>Bring copies of your passport</h5>
<p>Aliquam pretium id justo eget tristique. Aenean feugiat vestibulum blandit.</p>
</div>
<div class="tips_left tips_left_2">
<h5>Register with your embassy</h5>
<p>Mauris efficitur, ante sit amet rhoncus malesuada, orci justo sollicitudin.</p>
</div>
<div class="tips_left tips_left_3">
<h5>Always have local cash</h5>
<p>Donec et placerat ante. Etiam et velit in massa. </p>
</div>
</div>
<!-- CUSTOMER TESTIMONIALS -->
<div class="col-md-8 col-sm-6 col-xs-12 testi-2">
<!-- TESTIMONIAL TITLE -->
<h3>Customer Testimonials</h3>
<div class="testi">
<h4>John William</h4>
<p>Ut sed sem quis magna ultricies lacinia et sed tortor. Ut non tincidunt nisi, non elementum lorem. Aliquam gravida sodales</p>
<address>Illinois, United States of America</address>
</div>
<!-- ARRANGEMENTS & HELPS -->
<h3>Arrangement & Helps</h3>
<div class="arrange">
<ul>
<!-- LOCATION MANAGER -->
<li>
<a href="#">
<img src="images/Location-Manager.png" alt="">
</a>
</li>
<!-- PRIVATE GUIDE -->
<li>
<a href="#">
<img src="images/Private-Guide.png" alt="">
</a>
</li>
<!-- ARRANGEMENTS -->
<li>
<a href="#">
<img src="images/Arrangements.png" alt="">
</a>
</li>
<!-- EVENT ACTIVITIES -->
<li>
<a href="#">
<img src="images/Events-Activities.png" alt="">
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
</asp:Content>