-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookNow.php
86 lines (77 loc) · 1.86 KB
/
bookNow.php
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
<?php
// include the header
include('header.php')
?>
<style>
/* Style for the button */
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 10px 0;
cursor: pointer;
border-radius: 5px;
box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
/* Hover effect */
.button:hover {
background-color: #3e8e41;
}
</style>
<div id=roomGalary1>
<h1>Welcome to our room gallery!!!</h1>
<img src=" images/single.jpg">
<table>
<tr>
<th>Apartments Type</th>
<th>Price per Night</th>
<th>Facilities</th>
</tr>
<tr>
<td>Single Room</td>
<td>€50-60</td>
<td>Free parking,</br>Pool,</br> Balcony,</br>Breakfast Included,</br></td>
</tr>
</table>
<a href="index.php" class="button">Book this Room!</a></br>
<p>Double Room</p></br>
<img src=" images/double.jpg">
<table >
<tr>
<th>Apartments Type</th>
<th>Price per Night</th>
<th>Facilities</th>
</tr>
<tr>
<td>Double Room</td>
<td>€100-120</td>
<td>Free parking,</br>Pool,</br> Balcony,</br>Breakfast Included</td>
</tr>
</table></br>
<a href="index.php" class="button">Book this Room!</a></br>
<img src=" images/family.jpg">
<p>Family room</p>
<table >
<tr>
<th>Apartments Type</th>
<th>Price per Night</th>
<th>Facilities</th>
</tr>
<tr>
<td>Family Room</td>
<td>€120-150</td>
<td>Free parking,</br>Pool,</br> Balcony,</br>Breakfast Included</td>
</tr>
</table></br>
<a href="index.php" class="button">Book this Room!</a></br>
</tr>
</div>
<?php
// include the header
include('footer.php')
?>