-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (64 loc) · 2.11 KB
/
index.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
<!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">
<h1 class="site-title"><a href="#">Properties Offers</a></h1>
</header>
<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: 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>
<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>