-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
57 lines (45 loc) · 1 KB
/
index.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
<!doctype html>
<html>
<head>
<title>EC Rentals</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/main.css" media="screen" />
</head>
<body>
<div class="wrapper">
<nav>
<?php include_once('navigation.php')?>
</nav>
<header>
<div class="hero">
</div>
</header>
<main>
<div class="gallery">
<a href="availableRentals.php">
<h2 class="pictureLabels" >Available Rentals</h2>
</a>
</div>
<div class="gallery">
<a href="tenantServices.php">
<h2 class="pictureLabels" >Tenant Services</h2>
</a>
</div>
<div class="gallery">
<a href="ownerServices.php">
<h2 class="pictureLabels" >Owner Services</h2>
</a>
</div>
<div class="gallery">
<a href="aboutUs.php">
<h2 class="pictureLabels" >About Us</h2>
</a>
</div>
</main>
<!-- <div style="clear: both;"> </div> -->
<footer>
<?php include_once('footer.php')?>
</footer>
</div>
</body>
</html>