-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhousepage.html
109 lines (107 loc) · 5.17 KB
/
housepage.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
<!DOCTYPE html>
<html>
<head>
<title>House</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Jersey+25&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel= "stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jersey+25&family=Michroma&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header class="navbar">
<div class="navbar-logo">
<a href="homepage.html"><img src="icons/NestFinder.png" alt="NestFinder Logo"></a>
</div>
<div class="navbar-icons">
<img src="icons/Bell.png" alt="Notification" class="navbar-icon">
<img src="icons/user-icon.png" alt="User Profile" class="navbar-icon">
</div>
</header>
<div class="listing">
<div>
<img class="house-image" src="images/house-1.png">
</div>
<div class="about-house">
<p class="listing-title">1 Bed 1 Bath - Apartment Round</p>
<p class="desc-title">Description</p>
<p class="description">
Gastown loft available 1 bed + 1 bath 1 Underground parking Comes with tv, sofa, bed
Can be unfurnished Same price Storage locker Available on Feb.15/2025 One year min
Pets are allowed
</p>
<p class="desc-distance">~1.3 km from UBC</p>
<div class="external-links">
<div><img src="icons/facebook-logo.png" class="external-logo"></div>
<div>
<a href="https://www.facebook.com/share/196dEAFhPW/" target="_blank">
<button class="redirect-button" id="fb-button">$2600/Month</button>
</a>
</div>
<div><img src="icons/kijiji-logo.png" class="external-logo"></div>
<div><button class="redirect-button" id="kj-button">$2600/Month</button></div>
</div>
</div>
</div>
<p class="sub-title">More Listings: </p>
<div class="more-listings">
<a class="listing-link" href="housepage.html" target="_blank">
<div class="result-box">
<img class="result-img" src="images/result-img-2.png">
<div class="result-text">
<p class="result-heading">2 Bed/2 Bath Apartment</p>
<p class="result-price">from <u><strong>$4,100</strong></u> a month</p>
<p class="result-distance">~1.5 km from UBC</p>
</div>
</div>
</a>
<a class="listing-link" href="housepage.html" target="_blank">
<div class="result-box">
<img class="result-img" src="images/result-img-3.png">
<div class="result-text">
<p class="result-heading">1 Bed 1 Bath - Apartment</p>
<p class="result-price">from <u><strong>$2,200</strong> </u>a month</p>
<p class="result-distance">~0.5 km from UBC</p>
</div>
</div>
</a>
<a class="listing-link" href="housepage.html" target="_blank">
<div class="result-box">
<img class="result-img" src="images/result-img-4.jpeg">
<div class="result-text">
<p class="result-heading">2 Beds 2 Baths House</p>
<p class="result-price">from <u><strong>$3,200</strong> </u>a month</p>
<p class="result-distance">~0.5 km from UBC</p>
</div>
</div>
</a>
<a class="listing-link" href="housepage.html" target="_blank">
<div class="result-box">
<img class="result-img" src="images/result-img-5.jpeg">
<div class="result-text">
<p class="result-heading">1 Bed 1 Bath - House</p>
<p class="result-price">from <u><strong>$750</strong> </u>a month</p>
<p class="result-distance">~1.2 km from UBC</p>
</div>
</div>
</a>
</div>
<footer class="footer">
<div class="footer-content">
<div class="footer-text">
<h1>NestFinder</h1>
<p>Follow us to stay updated on upcoming events and changes!</p>
</div>
<div class="footer-icons">
<a href="https://portal.nwplus.io" target="_blank"><img src="icons/linkedin-footer.png" alt="LinkedIn Icon" class="social-footer"></a>
<a href="https://portal.nwplus.io" target="_blank"><img src="icons/facebook-footer.png" alt="Facebook Icon" class="social-footer"></a>
<a href="https://portal.nwplus.io" target="_blank"><img src="icons/tiktok-footer.png" alt="TikTok Icon" class="social-footer"></a>
<a href="https://portal.nwplus.io" target="_blank"><img src="icons/instagram-footer.png" alt="Instagram Icon" class="social-footer"></a>
</div>
</div>
</footer>
</body>
</html>