-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperties.php
More file actions
48 lines (44 loc) · 1.28 KB
/
properties.php
File metadata and controls
48 lines (44 loc) · 1.28 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
<?php
$title = "Our Properties";
$desc = "";
include("includes/header.php"); ?>
<main role="main" id="propertiespage">
<section class="pagetitle">
<h1>Properties</h1>
</section>
<section class="content">
<section class="propertycontainer">
<div class="property property1">
<div class="propertyinfo">
<div class="propertytitle"><h2>Property Name</h2></div>
<div class="propertyprice"><h2>Price</h2></div>
<div class="propertydescription"><p>Information of property</p></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 class="propertycontainer">
<div class="property property2">
<div class="propertyinfo">
<div class="propertytitle"><h2>Property Name</h2></div>
<div class="propertyprice"><h2>Price</h2></div>
<div class="propertydescription"><p>Information of property</p></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"); ?>