-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.html
157 lines (148 loc) · 5.26 KB
/
single.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Properties</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="./css/master.css">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="site-wrapper">
<header class="site-header">
<h2 class="site-title"><a href="#">Properties Offers</a></h2>
</header>
<div class="property-single">
<main class="property-main">
<div class="property-card">
<div class="property-primary">
<header class="property-header">
<h2 class="property-title"><a href="#">Two-bedroom apartment</a></h2>
<div class="property-meta">
<span class="meta-location">Ovcha Kupel, Sofia</span>
<span class="meta-total-area">Total area: 91.65 sq.m</span>
</div>
<div class="property-details grid">
<div class="property-details-card">
<div class="property-details-card-title">
<h3>Rooms</h3>
</div>
<div class="property-details-card-body">
<ul>
<li>2 Bedrooms</li>
<li>1 Bathroom</li>
<li>1 Living room</li>
<li>Separated kitchen</li>
</ul>
</div>
</div>
<div class="property-details-card">
<div class="property-details-card-title">
<h3>Building</h3>
</div>
<div class="property-details-card-body">
<ul>
<li>Number of floors: 6</li>
<li>Property's floor: 2</li>
<li>Elevator/Lift: yes</li>
<li>Type: Brick-built</li>
<li>Year of construction 2000</li>
</ul>
</div>
</div>
<div class="property-details-card">
<div class="property-details-card-title">
<h3>Services</h3>
</div>
<div class="property-details-card-body">
<ul>
<li>Electricity: Yes</li>
<li>Water Supply: Yes</li>
<li>Heating: Gas</li>
</ul>
</div>
</div>
<div class="property-details-card">
<div class="property-details-card-title">
<h3>Area</h3>
</div>
<div class="property-details-card-body">
<ul>
<li>Total area: 91.65 sq.m</li>
<li>Common parts: 12.63 sq.m</li>
<li>Net area: 79.02 sq.m</li>
<li>Price: 1,100 €/sq.m</li>
</ul>
</div>
</div>
</div>
</header>
<div class="property-body">
<p>Real estate agency "New Home" presents you a two-room apartment in a newly built building in Ovcha Kupel. With quick access to the Ring Road, close to public transport stops, shops and restaurants, a kindergarten.</p>
<p>The apartment has an entrance hall, living room with kitchenette, bedroom, bathroom with toilet, terrace.</p>
<p>The exposure is east/north.<br>There is an opportunity to purchase a garage in the building.</p>
<p>The building will be completed with luxury common areas, staircases and a lobby. Commercial areas include a restaurant, gym, a beauty salon, a shop, and a pharmacy.</p>
</div>
</div>
</div>
</main>
<aside class="property-secondary">
<div class="property-image property-image-single">
<div class="property-image-box property-image-box-single">
<img src="images/bedroom.jpg" alt="property image">
</div>
</div>
<a href="#" class="button button-wide">Contact Us Now</a>
</aside>
</div>
<h2 class="section-heading">Other similar properties:</h2>
<ul class="properties-listing">
<li class="property-card">
<div class="property-primary">
<h2 class="property-title"><a href="#">Two-bedroom apartment</a></h2>
<div class="property-meta">
<span class="meta-location">Ovcha Kupel, Sofia</span>
<span class="meta-total-area">Total area: 99.50 sq.m</span>
</div>
<div class="property-details">
<span class="property-price">€ 100,815</span>
<span class="property-date">Posted 14 days ago</span>
</div>
</div>
<div class="property-image">
<div class="property-image-box">
<img src="images/bedroom.jpg" alt="property image">
</div>
</div>
</li>
<li class="property-card">
<div class="property-primary">
<h2 class="property-title"><a href="#">Two-bedroom apartment</a></h2>
<div class="property-meta">
<span class="meta-location">Ovcha Kupel, Sofia</span>
<span class="meta-total-area">Total area: 91.65 sq.m</span>
</div>
<div class="property-details">
<span class="property-price">€ 100,815</span>
<span class="property-date">Posted 14 days ago</span>
</div>
</div>
<div class="property-image">
<div class="property-image-box">
<img src="images/bedroom.jpg" alt="property image">
</div>
</div>
</li>
</ul>
<footer class="site-footer">
<p>© Copyright 2023 | Developer links:
<a href="/edits.html">Edits</a>,
<a href="/index.html">Home</a>,
<a href="/single.html">Single</a>
</p>
</footer>
</div>
</body>
</html>