Skip to content

Commit 02c0cd3

Browse files
committed
Made some Changes
1 parent 8ea9236 commit 02c0cd3

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8-
<title>HOLUX - Real Estate</title>
8+
<title>Haven Reality Co.</title>
99
<link rel="stylesheet" href="styles.css">
1010
<link href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/3.0.0/remixicon.min.css" rel="stylesheet">
1111
</head>
@@ -14,7 +14,7 @@
1414

1515
<nav>
1616
<div class="nav__brand">
17-
<a href="#">HOLUX</a>
17+
<a href="#">Haven Reality Co.</a>
1818
</div>
1919
<div class="nav__links">
2020
<a href="#home">Home</a>
@@ -32,7 +32,7 @@
3232
</div>
3333
</nav>
3434

35-
<!-- Header Section -->
35+
3636
<header id="home">
3737
<div class="header__content">
3838
<h1>A Home Built With Love and Dreams</h1>
@@ -42,7 +42,7 @@ <h1>A Home Built With Love and Dreams</h1>
4242
<img src="Images/header.png" alt="header image" class="header__img" />
4343
</header>
4444

45-
<!-- About Section -->
45+
4646
<section id="about">
4747
<div class="about__container">
4848
<img src="Images/about.jpg" alt="about us" class="about__img" />
@@ -68,7 +68,7 @@ <h4>Ongoing Projects</h4>
6868
</div>
6969
</section>
7070

71-
<!-- Projects Section -->
71+
7272
<section id="project">
7373
<h2 class="section__header">Ongoing Projects</h2>
7474
<div class="project__container">
@@ -124,7 +124,7 @@ <h4>Hyatt Place</h4>
124124
<a href="Page1.html" class="nextpage-button">Click here to view more projects</a>
125125
</div>
126126

127-
<!-- Contact Section -->
127+
128128
<section id="contact">
129129
<div class="contact__container">
130130
<img src="Images/contact.jpg" alt="contact" class="contact__img" />
@@ -143,11 +143,11 @@ <h2>Contact Us</h2>
143143
</div>
144144
</section>
145145

146-
<!-- Footer -->
146+
147147
<footer class="footer">
148148
<div class="footer__container">
149149
<div class="footer__col">
150-
<h4>HOLUX</h4>
150+
<h4>Haven Reality Co.</h4>
151151
<p>Our team of seasoned professionals is committed to providing you with exceptional service, in-depth market knowledge, and personalized solutions tailored to your unique needs.</p>
152152
<div class="footer__socials">
153153
<a href="#"><i class="ri-facebook-circle-fill"></i></a>
@@ -163,12 +163,12 @@ <h4>Resources</h4>
163163
</div>
164164
<div class="footer__col">
165165
<h4>Contact</h4>
166-
<a href="mailto:holux@gmail.com"><i class="ri-mail-line"></i> holux@gmail.com</a>
167-
<a href="tel:+916264422620"><i class="ri-phone-line"></i> +91 6264422620</a>
166+
<a href="mailto:havenrealityco@gmail.com"><i class="ri-mail-line"></i> havenrealityco@gmail.com</a>
167+
<a href="tel:+916264422620"><i class="ri-phone-line"></i> +91 9667233973</a>
168168
</div>
169169
</div>
170170
<div class="footer__bar">
171-
<p>&copy; 2024 HOLUX. All rights reserved.</p>
171+
<p>&copy; 2024 Haven Reality Co. All rights reserved.</p>
172172
</div>
173173
</footer>
174174

styles.css

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
/* General Reset */
21
* {
32
margin: 0;
43
padding: 0;
54
box-sizing: border-box;
65
font-family: 'Arial', sans-serif;
76
}
87

9-
/* Body */
8+
109
body {
1110
background-color: #f8f8f8;
1211
color: #333;
1312
line-height: 1.6;
1413
}
1514

16-
/* Navigation */
15+
1716
nav {
1817
display: flex;
1918
justify-content: space-between;
@@ -78,7 +77,7 @@
7877
background-color: #e0e0e0;
7978
}
8079

81-
/* Header */
80+
8281
header {
8382
position: relative;
8483
background-color: #f4f4f4;
@@ -123,7 +122,7 @@
123122
z-index: -1;
124123
}
125124

126-
/* About Section */
125+
127126
#about {
128127
padding: 60px 20px;
129128
display: flex;
@@ -185,7 +184,7 @@
185184
margin-top: 10px;
186185
}
187186

188-
/* Projects Section */
187+
189188
#project {
190189
padding: 60px 20px;
191190
background-color: #fafafa;
@@ -241,7 +240,7 @@
241240
font-weight: bold;
242241
}
243242

244-
/* More Projects Link */
243+
245244
.more-projects {
246245
margin-top: 40px;
247246
}
@@ -260,7 +259,7 @@
260259
background-color: #0056b3;
261260
}
262261

263-
/* Contact Section */
262+
264263
#contact {
265264
padding: 60px 20px;
266265
display: flex;
@@ -319,7 +318,7 @@
319318
background-color: #e55347;
320319
}
321320

322-
/* Footer */
321+
323322
.footer {
324323
background-color: #333;
325324
color: white;
@@ -358,7 +357,6 @@
358357
font-size: 1rem;
359358
}
360359

361-
/* Responsive Design */
362360
@media screen and (max-width: 768px) {
363361
.nav__links {
364362
flex-direction: column;

0 commit comments

Comments
 (0)