-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
38 lines (38 loc) · 1.54 KB
/
contact.html
File metadata and controls
38 lines (38 loc) · 1.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | SAYVA Real Estate</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="logo"><a href="index.html"><img src="images/logo.png" alt="SAYVA logo"></a></div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="buy-sell.html">Buy & Sell</a></li>
<li><a href="leasing-101.html">Leasing 101</a></li>
<li><a href="listings.html">Listings</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="container">
<section>
<h1>Get in touch</h1>
<p>Ready to make a move or curious about a Toronto neighbourhood? Drop us a message or book a discovery call. We're here to answer questions and guide you through your real estate journey.</p>
<p><a class="button" href="https://calendly.com" target="_blank">Book discovery call</a></p>
<h2>Contact info</h2>
<p><strong>Nalin Sharma</strong> – Salesperson at Royal LePage Real Estate Services Ltd., Brokerage</p>
<p>55 St Clair Ave W<br>Toronto, ON M4V 2Y7</p>
<p>Cell: <a href="tel:4167263274">416‑726‑3274</a><br>Office: <a href="tel:4169211112">416‑921‑1112</a></p>
</section>
</main>
<footer>
<p>© 2026 Nalin Sharma | SAYVA Real Estate. All rights reserved.</p>
</footer>
</body>
</html>