-
Notifications
You must be signed in to change notification settings - Fork 0
/
Landlord.php
62 lines (62 loc) · 1.44 KB
/
Landlord.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
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Landlord Page</title>
<link href="https://fonts.googleapis.com/css?family=Abel|Montserrat|Patua+One" rel="stylesheet">
<style type="text/css">
*{
margin: 0;
padding: 0;
}
body{
background-image: url(House.jpg);
background-repeat: no-repeat;
background-size: cover;
font-family: Arial, sans-serif;
}
.button{
display: block;
width: 180px;
height: 60px;
position: relative;
border: 2px solid #04a;
margin: 200px auto;
border-radius: 5px;
background-color: #06c;
}
.button .content{
display: block;
position: absolute;
bottom: 6px;
width: 100%;
height: 100%;
line-height: 60px;
background-color: #09f;
text-align: center;
color: #fff;
text-transform: uppercase;
box-shadow: 0 6px 0 #06c;
border-radius: 5px;
transition: all 0.1s linear;
}
.button:active .content{
bottom: 0;
box-shadow: 0 0 0 #06c;
}
.logo{
color: #fff;
font-family: 'Abel', sans-serif;
font-size: 30px;
padding: 20px;
}
</style>
</head>
<body>
<a href="landlord_home.php" class="button">
<span class="content">Rent House</span>
</a>
<a href="addtenant.html" class="button">
<span class="content">Add Tenant</span>
</a>
</body>
</html>