-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrooms.php
More file actions
58 lines (57 loc) · 1.62 KB
/
Copy pathrooms.php
File metadata and controls
58 lines (57 loc) · 1.62 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
<?php
include 'header.php';
?>
<body>
<!--==============================header=================================-->
<header>
<div class="container_12">
<div class="grid_12">
<div class="menu_block">
<?php
include 'menu.php';
?>
<div class="clear"></div>
</div>
</div>
</div>
</header>
<!--==============================Content=================================-->
<div class="content">
<div class="container_12">
<h3><a href="rooms.php">ROOMS</a>/<a href="suits.php">SUITS</a>/COMPARE ROOM TYPES</h3>
<div class="banners">
<div class="grid_4">
<div class="banner">
<img src="images/E.jpg" alt="">
<div class="label">
<div class="title">DELUXE GUEST ROOM</div>
<div class="price">from<span>$ 1.600</span></div>
<a href="deluxe.php">LEARN MORE</a>
</div>
</div>
</div>
<div class="grid_4">
<div class="banner">
<img src="images/F.png" alt="">
<div class="label">
<div class="title">SUPERIOR GUEST ROOM</div>
<div class="price">from<span>$ 2000</span></div>
<a href="sup.php">LEARN MORE</a>
</div>
</div>
</div>
<div class="grid_4">
<div class="banner">
<img src="images/G.jpg" alt="">
<div class="label">
<div class="title">CLUB LEVEL GUEST ROOM</div>
<div class="price">from<span>$ 1.500</span></div>
<a href="guest.php">LEARN MORE</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--==============================footer=================================-->
<?php include 'footer.php';?>