-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathservices.html
More file actions
45 lines (43 loc) · 1.25 KB
/
services.html
File metadata and controls
45 lines (43 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Services</h2>
<p>Here are the list of tour packages provided by us.To know more about the service you may have to sign up to our website and register to our premium membership to avail more benefits and offers.</p>
<table class="table table-bordered">
<thead>
<tr>
<th>Package</th>
<th>Cost</th>
<th>Duration</th>
</tr>
</thead>
<tbody>
<tr>
<td>General</td>
<td>$2000</td>
<td>3 days & 2 nights</td>
</tr>
<tr>
<td>Premium</td>
<td>$5000</td>
<td>5 days and 4 nights</td>
</tr>
<tr>
<td>Diamond</td>
<td>$10,000</td>
<td>10 days and 9 nights</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>