-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3bed.php
More file actions
43 lines (39 loc) · 1.41 KB
/
3bed.php
File metadata and controls
43 lines (39 loc) · 1.41 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
<?php
$title = "3 Bedroom Student Houses ";
$desc = "3 Bedroom Student Accomodation";
include("includes/header.php"); ?>
<section class="secondarynav">
<ul class="secondary-nav-links">
<li role="menuitem"><a href="3bed.php">3 Bedrooms</a></li>
<li role="menuitem"><a href="4bed.php">4 Bedrooms</a></li>
<li role="menuitem"><a href="5bed.php">5 Bedrooms</a></li>
<li role="menuitem"><a href="6bed.php">6 Bedrooms</a></li>
<li role="menuitem"><a href="7bed.php">7 Bedrooms</a></li>
<li role="menuitem"><a href="8bed.php">8 Bedrooms</a></li>
</ul>
</section>
<main role="main" id="skipnav">
<section class="content">
<section class="housesizeheader" >
<h1>3 Bed Houses</h1>
</section>
<section class="propertycontainer">
<div class="property property2">
<div class="propertyinfo">
<div class="propertytitle"><h2>Property 1</h2></div>
<div class="propertyprice"><h2>Price</h2></div>
<div class="propertydescription"><p>Information of property</p>
<div class="propertyreadmore"><a href="property.php">More Info</a></div></div>
</div>
<div class="mainpropertyimage"></div>
<div class="propertythumbs">
<img src="" style="height:125px;" alt="" />
<img src="" style="height:125px;" alt="" />
<img src="" style="height:125px;" alt="" />
<img src="" style="height:125px;" alt="" />
</div>
</div>
</section>
</section>
</main>
<?php include("includes/footer.php"); ?>