-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
65 lines (56 loc) · 2.6 KB
/
privacy.html
File metadata and controls
65 lines (56 loc) · 2.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | Invitation Homes</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header class="main-header">
<!-- Standard Header with Logo/Nav -->
<div class="header-container">
<div class="logo"><a href="index.html"><img src="assets/images/Logo.svg" alt="Invitation Homes Logo"></a>
</div>
<nav class="main-nav">
<ul>
<li><button>Find your home</button></li>
<li><button>Our difference</button></li>
<li><button>Resources</button></li>
<li><button>About</button></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="generic-content" style="margin-top: 60px;">
<h1>Privacy Policy</h1>
<p><strong>Last Updated: January 1, 2026</strong></p>
<p>At Invitation Homes, we deeply value your trust and are committed to protecting your personal
information. This Privacy Policy describes how we collect, use, and share your data.</p>
<h2>1. Information We Collect</h2>
<p>We collect information you provide directly to us, such as when you apply for a home, creating an online
account, or contact customer support.</p>
<ul>
<li>Name, email address, phone number</li>
<li>Social Security Number (for background checks)</li>
<li>Financial information (income, bank account details)</li>
</ul>
<h2>2. How We Use Your Information</h2>
<p>We use your information to process your rental application, manage your lease, and communicate with you
about your home.</p>
<h2>3. Information Sharing</h2>
<p>We do not sell your personal information. We may share data with service providers who help us operate
our business (e.g., background check agencies, payment processors).</p>
<h2>4. Your Rights</h2>
<p>Depending on your location, you may have rights to access, delete, or restrict the use of your personal
data.</p>
</section>
</main>
<footer class="main-footer">
<div class="footer-container">
<p>© 2026 Invitation Homes. All rights reserved.</p>
</div>
</footer>
</body>
</html>