-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenquiry.html
85 lines (69 loc) · 3.22 KB
/
enquiry.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Travel</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/enquiry.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet">
</head>
<body>
<marquee bgcolor="lighblue">Note: All your tour enquiry and bookings will be checked by our experts and all
information
will be given at your
given email and mobile number.Thank You for choosing Travel Masti! </marquee>
<section class="my-5">
<div id="Package Enquiry" class="py-5">
<h2 class="text-center">Tour Enquiry</h2>
</div>
<div class="w-50 m-auto">
<form action="enquirydb.php" method="post">
<div class="form-group">
<label>Username</label>
<input type="text" name="user" autocomplete="off" class="form-control"
placeholder="Enter your username">
</div>
<div class="form-group">
<label>Email Id</label>
<input type="text" name="email" autocomplete="off" class="form-control"
placeholder="Enter your Email-id">
</div>
<div class="form-group">
<label>Mobile No</label>
<input type="text" name="mobile" autocomplete="off" class="form-control"
placeholder="Enter your Mobile-No">
</div>
<div class="form-group">
<label for="sel1">No of persons:</label>
<select class="form-control" id="sel1" name="persons">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
</div>
<div class="form-group">
<label for="sel2">Package:</label>
<select class="form-control" id="sel2" name="package">
<option>London</option>
<option>India</option>
<option>Austrailia</option>
</select>
</div>
<div class="form-group">
<label>Address</label>
<textarea class="form-control" name="address">
</textarea>
</div>
<button type="submit" id="submit" class="btn btn-success"
onclick="alert('Thank You! We will soon get in touch with you')">Submit</button>
</form>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>