-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperties.html
127 lines (101 loc) · 3.45 KB
/
properties.html
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Properties</title>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<br />
<div class="pg1">
<div class="info">
<div class="parent1">
<div class="email">
<div class="emailicon">
<img
src="./images/email-icon-free-vector.jpg"
alt="email"
width="25"
height="25"
/>
</div>
<div class="mailid"><p>[email protected]</p></div>
</div>
<div class="vertical-line"></div>
<div class="location">
<div class="addicon">
<img
src="./images/new location icon.jpg"
alt="address"
width="35"
height="35"
/>
</div>
<div class="address"></div>
<p>Sunny Isles Beach,FL 331690</p>
</div>
</div>
<div class="social">
<ul><a href="https://www.facebook.com/"> <img src="./images/fb.jpg" alt="" width="25" /></a></ul>
<ul><a href="https://twitter.com/?lang=en"> <img src="./images/twitter.png" alt="" width="25" height="25px" /></a></ul>
<ul> <a href="https://www.linkedin.com/"> <img src="./images/linkedin.png" alt="" width="25" /></a></ul>
<ul> <a href="https://www.instagram.com/"><img src="./images/insta.png" alt="" width="25" /></a> </ul>
</div>
</div>
<hr>
<div class="stick">
<div class="heading" id="head">
<div class="headham">
<h1 class="villahead">VILLA</h1>
<img class="hamburger" id="ham" src="./images/hamburger.png" alt="" onclick="display()">
</div>
<b
><div class="menu" id="menuid">
<ul><a style="color: red;" href="./home.html" id="home">Home</a></ul>
<ul><a href="./properties.html" id="prop">Properties</a></ul>
<ul><a href="./tailwind.html"id="propdetail">Property details</a></ul>
<ul><a href="./contact.html" id="contact">Contact Us</a> </ul>
<ul><a href="./home.html" id="schedule">Schedule a visit</a></ul>
</div>
</b>
</div>
</div>
<br />
</div>
<!-- content -->
<div class="bgprop">
<div class="color-overlay"></div>
<br><br><br><br>
<div class="txt">
<div class="home-prop">
<a id="homeref" href="./home.html">HOME</a>
<p>/PROPERTIES</p>
</div>
<div class="prop-head">
<h1>PROPERTIES</h1>
</div>
</div>
</div><br><br><br>
<div class="button">
<ul class="btn">Show All</ul>
<ul class="btn">Apartment</ul>
<ul class="btn" id="vil">Villa</ul>
<ul class="btn">Penthouse</ul>
</div>
<div class="pg3">
<div class="grid" id="allvilla">
</div>
<br>
<div class="pageno">
<ul ><a class="pg" href="./properties.html">1</a></ul>
<ul ><a class="pg" href="./properties.html">2</a></ul>
<ul ><a class="pg" href="./properties.html">3</a></ul>
<ul ><a class="pg" id="arrow" href="./properties.html">>></a></ul>
<!-- <ul >2</ul>
<ul class="pg">3</ul>
<ul class="pg" id="arrow">>></ul> -->
</div>
<script src="./script.js"></script>
</body>
</html>