603 lines
24 KiB
HTML
603 lines
24 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Modern Urban Residences Brochure - Updated</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=Inter:wght@300;400;500;700;800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
<style>
|
|
/* --- DESIGN SYSTEM & VARIABLES --- */
|
|
:root {
|
|
/* Color Palette */
|
|
--color-dark: #111111;
|
|
--color-light: #FFFFFF;
|
|
--color-accent-green: #0A6847;
|
|
--color-grey-bg: #F0F0F0;
|
|
--color-text-dark: #222222;
|
|
--color-text-light: #EFEFEF;
|
|
--color-text-muted: #888888;
|
|
--color-border: #DDDDDD;
|
|
|
|
/* Typography */
|
|
--font-main: 'Inter', sans-serif;
|
|
}
|
|
|
|
/* --- GLOBAL & BODY STYLES --- */
|
|
body {
|
|
font-family: var(--font-main);
|
|
background-color: #d8d8d8;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 50px;
|
|
margin: 0;
|
|
gap: 50px;
|
|
}
|
|
|
|
.brochure-page {
|
|
width: 210mm;
|
|
height: 297mm;
|
|
background-color: var(--color-light);
|
|
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
/* --- PAGE 1: COVER PAGE --- */
|
|
.cover-page {
|
|
background-image: url('https://plus.unsplash.com/premium_photo-1677474827617-6a7269f97574?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
|
background-size: cover;
|
|
background-position: center;
|
|
color: var(--color-light);
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
.cover-overlay {
|
|
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
|
|
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
|
|
}
|
|
.cover-content {
|
|
position: relative; z-index: 2; padding: 50px;
|
|
}
|
|
.cover-content .subtitle {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
letter-spacing: 4px;
|
|
text-transform: uppercase;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
.cover-content .main-title {
|
|
font-size: 6rem;
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
margin: 10px 0 20px 0;
|
|
text-shadow: 0 4px 10px rgba(0,0,0,0.3);
|
|
}
|
|
.cover-content .address {
|
|
font-size: 1.1rem;
|
|
font-weight: 400;
|
|
border-top: 1px solid var(--color-accent-green);
|
|
display: inline-block;
|
|
padding-top: 20px;
|
|
}
|
|
.cover-footer {
|
|
position: absolute;
|
|
bottom: 40px;
|
|
left: 40px; right: 40px;
|
|
z-index: 2;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* --- SHARED STYLES --- */
|
|
.page-container {
|
|
padding: 70px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
}
|
|
.page-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
border-bottom: 1px solid var(--color-border);
|
|
margin-bottom: 20px;
|
|
}
|
|
.page-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
color: var(--color-dark);
|
|
}
|
|
.page-title span {
|
|
color: var(--color-accent-green);
|
|
}
|
|
.page-subtitle {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
color: var(--color-text-muted);
|
|
}
|
|
.page-footer-bar {
|
|
margin-top: auto;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-top: 20px;
|
|
border-top: 1px solid var(--color-border);
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: var(--color-text-muted);
|
|
}
|
|
.page-footer-bar .property-name {
|
|
color: var(--color-dark);
|
|
}
|
|
.section-title {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--color-dark);
|
|
margin-bottom: 25px;
|
|
margin-top: 0;
|
|
}
|
|
.detail-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.9rem;
|
|
padding: 12px 0;
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
.detail-item .label { color: var(--color-text-muted); }
|
|
.detail-item .value { color: var(--color-text-dark); font-weight: 600; text-align: right; }
|
|
|
|
/* --- PAGE 2: THE VISION --- */
|
|
.vision-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 60px;
|
|
flex-grow: 1;
|
|
margin-bottom: 20px;
|
|
}
|
|
.vision-image {
|
|
background-image: url('https://images.unsplash.com/photo-1626704359446-0de90350b4e7?q=80&w=736&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
.vision-text h3 {
|
|
font-size: 1.8rem;
|
|
font-weight: 700;
|
|
color: var(--color-dark);
|
|
margin-bottom: 20px;
|
|
}
|
|
.vision-text p {
|
|
font-size: 1rem;
|
|
line-height: 1.8;
|
|
color: var(--color-text-muted);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* --- PAGE 3: RESIDENCES GALLERY --- */
|
|
.gallery-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-template-rows: 250px 250px 250px;
|
|
gap: 20px;
|
|
flex-grow: 1;
|
|
padding-top: 5px;
|
|
}
|
|
.gallery-item {
|
|
background-size: cover;
|
|
background-position: center;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
color: var(--color-light);
|
|
padding: 15px;
|
|
}
|
|
.gallery-item::after {
|
|
content: ''; position: absolute; top:0; left: 0; width: 100%; height: 100%;
|
|
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
|
|
}
|
|
.gallery-item span { font-weight: 600; z-index: 2; }
|
|
.g-item-1 { grid-column: 1 / 3; grid-row: 1 / 2; background-image: url('https://images.unsplash.com/photo-1616046229478-9901c5536a45?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
.g-item-2 { grid-column: 3 / 4; grid-row: 1 / 3; background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
.g-item-3 { grid-column: 1 / 2; grid-row: 2 / 4; background-image: url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
.g-item-4 { grid-column: 2 / 3; grid-row: 2 / 3; background-image: url('https://images.unsplash.com/photo-1595526114035-0d45ed16433d?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
.g-item-5 { grid-column: 2 / 4; grid-row: 3 / 4; background-image: url('https://images.unsplash.com/photo-1512918728675-ed5a71a580a9?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
|
|
/* --- PAGE 4: AMENITIES & FEATURES (REVISED V2) --- */
|
|
.amenities-intro {
|
|
font-size: 1rem;
|
|
line-height: 1.8;
|
|
color: var(--color-text-muted);
|
|
margin: 10px 0 20px 0;
|
|
}
|
|
.page4-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1.2fr;
|
|
gap: 50px;
|
|
flex-grow: 1;
|
|
margin-bottom: 30px;
|
|
}
|
|
.page4-image {
|
|
background-image: url('https://plus.unsplash.com/premium_photo-1675745330187-a6f001a21abe?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
|
background-size: cover;
|
|
background-position: center;
|
|
min-height: 100%;
|
|
border: 6px solid var(--color-accent-green);
|
|
}
|
|
.page4-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
.amenities-list-p4 {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 30px 0;
|
|
column-count: 2;
|
|
column-gap: 30px;
|
|
}
|
|
.amenities-list-p4 li {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-bottom: 18px;
|
|
font-weight: 500;
|
|
font-size: 0.95rem;
|
|
-webkit-column-break-inside: avoid;
|
|
page-break-inside: avoid;
|
|
break-inside: avoid;
|
|
}
|
|
.amenities-list-p4 i {
|
|
font-size: 1rem;
|
|
color: var(--color-accent-green);
|
|
margin-right: 15px;
|
|
width: 20px;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
/* --- PAGE 5: FLOOR PLANS & SPECS (REVISED V2) --- */
|
|
.page5-main {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 25px;
|
|
}
|
|
.floorplan-showcase {
|
|
display: grid;
|
|
grid-template-columns: 220px 1fr;
|
|
gap: 25px;
|
|
background-color: var(--color-grey-bg);
|
|
padding: 20px;
|
|
border-left: 5px solid var(--color-accent-green);
|
|
}
|
|
.floorplan-image-p5 {
|
|
background-size: cover;
|
|
background-position: center;
|
|
min-height: 200px;
|
|
}
|
|
.floorplan-image-p5.residence {
|
|
background-image: url('https://images.unsplash.com/photo-1740446568651-1d31966b228a?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
|
}
|
|
.floorplan-image-p5.penthouse {
|
|
background-image: url('https://images.unsplash.com/photo-1721522281545-fad32dd5107a?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
|
}
|
|
.floorplan-info-p5 h4 {
|
|
font-size: 1.3rem;
|
|
font-weight: 700;
|
|
margin: 0 0 15px 0;
|
|
}
|
|
.floorplan-stats-p5 {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 15px;
|
|
margin-bottom: 15px;
|
|
padding-bottom: 15px;
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
.floorplan-stats-p5 .stat .value {
|
|
font-weight: 700;
|
|
font-size: 1.3rem;
|
|
}
|
|
.floorplan-stats-p5 .stat .label {
|
|
font-size: 0.8rem;
|
|
color: var(--color-text-muted);
|
|
text-transform: uppercase;
|
|
}
|
|
.floorplan-info-p5 .description {
|
|
font-size: 0.9rem;
|
|
color: var(--color-text-muted);
|
|
line-height: 1.7;
|
|
}
|
|
.additional-specs-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 15px;
|
|
margin-top: 15px;
|
|
}
|
|
.spec-item {
|
|
background-color: var(--color-grey-bg);
|
|
padding: 15px;
|
|
}
|
|
.spec-item .label {
|
|
font-size: 0.8rem;
|
|
color: var(--color-text-muted);
|
|
margin-bottom: 5px;
|
|
display: block;
|
|
}
|
|
.spec-item .value {
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
color: var(--color-dark);
|
|
}
|
|
|
|
/* --- PAGE 6: LOCATION & CONTACT (REVISED V3) --- */
|
|
.page6-main {
|
|
flex-grow: 1;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 60px;
|
|
align-content: start;
|
|
padding-top: 20px;
|
|
}
|
|
.page6-main p {
|
|
font-size: 0.95rem;
|
|
line-height: 1.8;
|
|
color: var(--color-text-muted);
|
|
margin-bottom: 30px;
|
|
}
|
|
.contact-person-p6 {
|
|
margin-bottom: 30px;
|
|
}
|
|
.contact-person-p6 .name {
|
|
font-weight: 700;
|
|
font-size: 1.3rem;
|
|
color: var(--color-dark);
|
|
}
|
|
.contact-person-p6 .title {
|
|
color: var(--color-text-muted);
|
|
font-size: 0.9rem;
|
|
margin-bottom: 10px;
|
|
}
|
|
.contact-person-p6 .details {
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
line-height: 1.7;
|
|
}
|
|
.highlights-list-p6 {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.highlights-list-p6 li {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-bottom: 18px;
|
|
font-size: 0.95rem;
|
|
}
|
|
.highlights-list-p6 i {
|
|
color: var(--color-accent-green);
|
|
margin-right: 15px;
|
|
width: 20px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="brochure-page cover-page">
|
|
<div class="cover-overlay"></div>
|
|
<div class="cover-content">
|
|
<div class="subtitle">[Cover Subtitle]</div>
|
|
<h1 class="main-title">[Property Name]</h1>
|
|
<div class="address">[Address]</div>
|
|
</div>
|
|
<div class="cover-footer">
|
|
<span>Residences starting from [Starting Price]</span>
|
|
<span>Ref ID: [Reference ID]</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="brochure-page">
|
|
<div class="page-container">
|
|
<header class="page-header">
|
|
<h1 class="page-title">[Page 2 Title]</h1>
|
|
<span class="page-subtitle">[Page 2 Subtitle]</span>
|
|
</header>
|
|
<main class="vision-grid">
|
|
<div class="vision-text">
|
|
<h3>[Vision Heading]</h3>
|
|
<div class="vision-text-content">[Vision HTML]</div>
|
|
</div>
|
|
<div class="vision-image"></div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">[Property Name]</span>
|
|
<span>Page 02 / 06</span>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="brochure-page">
|
|
<div class="page-container">
|
|
<header class="page-header">
|
|
<h1 class="page-title">Exquisite <span>Interiors</span></h1>
|
|
<span class="page-subtitle">A Canvas for Your Life</span>
|
|
</header>
|
|
<main class="gallery-grid">
|
|
<div class="gallery-item g-item-1"><span>[Gallery Label 1]</span></div>
|
|
<div class="gallery-item g-item-2"><span>[Gallery Label 2]</span></div>
|
|
<div class="gallery-item g-item-3"><span>[Gallery Label 3]</span></div>
|
|
<div class="gallery-item g-item-4"><span>[Gallery Label 4]</span></div>
|
|
<div class="gallery-item g-item-5"><span>[Gallery Label 5]</span></div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">[Property Name]</span>
|
|
<span>Page 03 / 06</span>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="brochure-page">
|
|
<div class="page-container">
|
|
<header class="page-header">
|
|
<h1 class="page-title">Amenities & <span>Features</span></h1>
|
|
<span class="page-subtitle">Beyond the Expected</span>
|
|
</header>
|
|
<p class="amenities-intro">An unrivaled collection of amenities offers residents a resort-style living experience. From the serene rooftop pool to the state-of-the-art wellness center, every detail is crafted for comfort, convenience, and luxury.</p>
|
|
<main class="page4-grid">
|
|
<div class="page4-image"></div>
|
|
<div class="page4-content">
|
|
<div>
|
|
<h3 class="section-title">Lifestyle Amenities</h3>
|
|
<ul class="amenities-list-p4">
|
|
<li><i class="fa-solid fa-water-ladder"></i> [Amenity 1]</li>
|
|
<li><i class="fa-solid fa-dumbbell"></i> [Amenity 2]</li>
|
|
<li><i class="fa-solid fa-martini-glass-empty"></i> [Amenity 3]</li>
|
|
<li><i class="fa-solid fa-film"></i> [Amenity 4]</li>
|
|
<li><i class="fa-solid fa-spa"></i> [Amenity 5]</li>
|
|
<li><i class="fa-solid fa-briefcase"></i> [Amenity 6]</li>
|
|
<li><i class="fa-solid fa-shield-halved"></i> [Amenity 7]</li>
|
|
<li><i class="fa-solid fa-car"></i> [Amenity 8]</li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h3 class="section-title">Key Specifications</h3>
|
|
<div class="detail-item"><span class="label">Status</span> <span class="value">[Status]</span></div>
|
|
<div class="detail-item"><span class="label">Property Type</span> <span class="value">[Property Type]</span></div>
|
|
<div class="detail-item"><span class="label">Year Built</span> <span class="value">[Year Built]</span></div>
|
|
<div class="detail-item"><span class="label">Technology</span> <span class="value">[Technology]</span></div>
|
|
<div class="detail-item"><span class="label">Design</span> <span class="value">[Design]</span></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">[Property Name]</span>
|
|
<span>Page 04 / 06</span>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="brochure-page">
|
|
<div class="page-container">
|
|
<header class="page-header">
|
|
<h1 class="page-title">Floor Plans & <span>Details</span></h1>
|
|
<span class="page-subtitle">Designed for Modern Life</span>
|
|
</header>
|
|
<main class="page5-main">
|
|
<div class="floorplan-showcase">
|
|
<div class="floorplan-image-p5 residence"></div>
|
|
<div class="floorplan-info-p5">
|
|
<h4>[Floorplan 1 Title]</h4>
|
|
<div class="floorplan-stats-p5">
|
|
<div class="stat">
|
|
<div class="value">[Floorplan 1 Area]</div>
|
|
<div class="label">SQ. FT.</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">[Floorplan 1 Bedrooms]</div>
|
|
<div class="label">BEDROOMS</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">[Floorplan 1 Bathrooms]</div>
|
|
<div class="label">BATHROOMS</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">[Floorplan 1 Balcony]</div>
|
|
<div class="label">BALCONY</div>
|
|
</div>
|
|
</div>
|
|
<div class="description">[Floorplan 1 Description HTML]</div>
|
|
</div>
|
|
</div>
|
|
<div class="floorplan-showcase">
|
|
<div class="floorplan-image-p5 penthouse"></div>
|
|
<div class="floorplan-info-p5">
|
|
<h4>[Floorplan 2 Title]</h4>
|
|
<div class="floorplan-stats-p5">
|
|
<div class="stat">
|
|
<div class="value">[Floorplan 2 Area]</div>
|
|
<div class="label">SQ. FT.</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">[Floorplan 2 Bedrooms]</div>
|
|
<div class="label">BEDROOMS</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">[Floorplan 2 Bathrooms]</div>
|
|
<div class="label">BATHROOMS</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">[Floorplan 2 Terrace]</div>
|
|
<div class="label">TERRACE</div>
|
|
</div>
|
|
</div>
|
|
<div class="description">[Floorplan 2 Description HTML]</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<h3 class="section-title">Additional Information</h3>
|
|
<div class="additional-specs-grid">
|
|
<div class="spec-item"><div class="label">Pets</div><div class="value">[Pets]</div></div>
|
|
<div class="spec-item"><div class="label">Smoking</div><div class="value">[Smoking]</div></div>
|
|
<div class="spec-item"><div class="label">Availability</div><div class="value">[Availability]</div></div>
|
|
<div class="spec-item"><div class="label">Parking</div><div class="value">[Parking]</div></div>
|
|
<div class="spec-item"><div class="label">Security Deposit</div><div class="value">[Security Deposit]</div></div>
|
|
<div class="spec-item"><div class="label">Utilities</div><div class="value">[Utilities]</div></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">[Property Name]</span>
|
|
<span>Page 05 / 06</span>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="brochure-page">
|
|
<div class="page-container">
|
|
<header class="page-header">
|
|
<h1 class="page-title">Location & <span>Inquiry</span></h1>
|
|
<span class="page-subtitle">Your Future Awaits</span>
|
|
</header>
|
|
<main class="page6-main">
|
|
<div>
|
|
<h3 class="section-title">Schedule a Private Viewing</h3>
|
|
<p>[Viewing CTA Text]</p>
|
|
<div class="contact-person-p6">
|
|
<div class="name">[Contact Name]</div>
|
|
<div class="title">[Contact Title]</div>
|
|
<div class="details">
|
|
[Contact Phone]<br>
|
|
[Contact Email]
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<h3 class="section-title">Neighborhood Highlights</h3>
|
|
<ul class="highlights-list-p6">
|
|
<li><i class="fa-solid fa-tree-city"></i> <strong>Landmarks:</strong> [Landmarks]</li>
|
|
<li><i class="fa-solid fa-train-subway"></i> <strong>Transportation:</strong> [Transportation]</li>
|
|
<li><i class="fa-solid fa-school"></i> <strong>Schools:</strong> [Schools]</li>
|
|
<li><i class="fa-solid fa-cart-shopping"></i> <strong>Shopping:</strong> [Shopping]</li>
|
|
<li><i class="fa-solid fa-plane-departure"></i> <strong>Airport:</strong> [Airport]</li>
|
|
</ul>
|
|
</div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">[Property Name]</span>
|
|
<span>Page 06 / 06</span>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |