-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperties.php
More file actions
61 lines (56 loc) · 2.38 KB
/
properties.php
File metadata and controls
61 lines (56 loc) · 2.38 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
59
60
61
<?php
$title = "Our Properties";
$desc = "Student Housing / Properties";
include("includes/header.php"); ?>
<section class="secondarynav">
<ul class="secondary-nav-links" role="menubar">
<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="imageheader" id="propertiesheader">
<h1>Properties</h1>
</section>
<section class="propertycontainer">
<div class="property property1">
<div class="propertyinfo">
<div class="propertytitle"><h2><a href="property.php">4 Fairbank Avenue</a></h2></div>
<div class="propertyprice"><h2>£78 PPPW</h2></div>
<div class="propertydescription"><p>Recently renovated <strong>8 Bedroom house</strong> with up to date furnishings, a large lounge (With 42" LCD TV) and kitchen, 5 large bedrooms, 3 medium bedrooms.</p>
<div class="propertyreadmore"><a href="property.php">More Info</a></div></div>
</div>
<div class="mainpropertyimage" id="mainpropertyimage1"></div>
<div class="propertythumbs">
<img src="images/house1/small/biglounge.jpg" alt="A picture of a large lounge with 3 sofas" />
<img src="images/house1/small/kitchen.jpg" alt="A picture of a Kitchen with a chrome oven" />
<img src="images/house1/small/bathroom.jpg" alt="A picture of a bathroom" />
<img src="images/house1/small/towel.jpg" alt="A picture of a towel rack" />
</div>
</div>
</section>
<section class="propertycontainer">
<div class="property property2">
<div class="propertyinfo">
<div class="propertytitle"><h2>Property 2</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="" alt="" />
<img src="" alt="" />
<img src="" alt="" />
<img src="" alt="" />-->
</div>
</div>
</section>
</section>
</main>
<?php include("includes/footer.php"); ?>