-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout-us.html
More file actions
132 lines (127 loc) · 3.34 KB
/
Copy pathAbout-us.html
File metadata and controls
132 lines (127 loc) · 3.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>First Class Rentals</title>
<meta name="description" content="First Class Rentals offers luxury rental properties with unmatched amenities and quality. Discover why our residents love us.">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Open Sans', sans-serif;
background-color: #fff;
color: #333;
}
.container {
width: 100%;
max-width: 1200px;
margin: auto;
padding: 20px;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
background: #111;
color: #fff;
}
.navbar .logo img {
height: 50px;
}
.navbar .menu {
display: flex;
gap: 20px;
}
.navbar .menu a {
text-decoration: none;
color: #fff;
font-weight: bold;
font-size: 1em;
}
.navbar .menu a:hover {
color: #00aaff;
}
.header-section {
text-align: center;
padding: 50px 20px;
background-color: #f7f7f7;
border-bottom: 3px solid #111;
}
.header-section h1 {
font-size: 3em;
margin-bottom: 10px;
color: #00aaff;
}
.header-section p {
font-size: 1.2em;
color: #555;
}
.about-section {
padding: 50px 20px;
text-align: center;
background-color: #fff;
color: #333;
}
.about-section h2 {
font-size: 2.5em;
margin-bottom: 20px;
color: #00aaff;
}
.about-section p {
font-size: 1.2em;
margin-bottom: 20px;
max-width: 800px;
line-height: 1.6;
margin-left: auto;
margin-right: auto;
color: #555;
}
.about-section .contact-info {
font-size: 1.2em;
margin-top: 20px;
color: #00aaff;
}
.footer {
text-align: center;
padding: 20px;
background: #111;
color: #ccc;
}
.footer p {
margin: 0;
font-size: 1em;
}
</style>
</head>
<body>
<header class="navbar container">
<div class="logo">
<img src="logo.png" alt="First Class Rentals Logo">
</div>
<nav class="menu">
<a href="#">All Listings</a>
<a href="#">About Us</a>
</nav>
</header>
<div class="header-section">
<h1>First Class Rentals</h1>
<p>Providing luxury accommodations with unmatched amenities and quality. Discover why our residents love us!</p>
</div>
<div class="about-section">
<h2>About Us</h2>
<p>Welcome to First Class Rentals (905-964-7422). We are committed to providing quality living experiences in good locations.</p>
<p>Since our inception in 1998, First Class Rentals has been at the forefront of offering quality accommodations for budget-minded renters. Our management team is dedicated to providing safe and comfortable accommodations at a reasonable price in the city of Saint Catharines. Located close to the downtown but still within established neighborhoods. We offer the best of both worlds with being close to the downtown in quiet nearby neighborhoods. Close to bus routes and shopping, our rental units are designed for convenience and personal enjoyment.</p>
<div class="contact-info">
<p>Contact us at: 905-964-7422</p>
</div>
</div>
<footer class="footer">
<p>© 2024 First Class Rentals. All rights reserved.</p>
</footer>
</body>
</html>