604 lines
25 KiB
HTML
604 lines
25 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">An Urban Oasis</div>
|
|
<h1 class="main-title">THE VERTICE</h1>
|
|
<div class="address">18 Skyline Avenue, Metropolis Centre, MC 90210</div>
|
|
</div>
|
|
<div class="cover-footer">
|
|
<span>Residences Starting from $1,200,000</span>
|
|
<span>Ref ID: VP-2025-001</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="brochure-page">
|
|
<div class="page-container">
|
|
<header class="page-header">
|
|
<h1 class="page-title">Elevated <span>Living</span></h1>
|
|
<span class="page-subtitle">Discover Your Sanctuary in the Sky</span>
|
|
</header>
|
|
<main class="vision-grid">
|
|
<div class="vision-text">
|
|
<h3>Where Design Meets Desire.</h3>
|
|
<p>The Vertice is not just a building; it's a bold statement on modern urban living. Conceived for the discerning individual, it offers a unique blend of architectural prowess, bespoke interiors, and an unparalleled lifestyle experience right in the heart of the city.</p>
|
|
<p>Every residence is a testament to quality, featuring panoramic city views from floor-to-ceiling windows, intelligent home systems, and finishes selected from the finest materials around the globe. This is more than a home; it's a new perspective.</p>
|
|
</div>
|
|
<div class="vision-image"></div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">THE VERTICE</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>Open-Concept Living Space</span></div>
|
|
<div class="gallery-item g-item-2"><span>Master Bedroom Suite</span></div>
|
|
<div class="gallery-item g-item-3"><span>Gourmet Chef's Kitchen</span></div>
|
|
<div class="gallery-item g-item-4"><span>Spa-Inspired Bathroom</span></div>
|
|
<div class="gallery-item g-item-5"><span>Private Balcony Views</span></div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">THE VERTICE</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> Rooftop Infinity Pool</li>
|
|
<li><i class="fa-solid fa-dumbbell"></i> Fitness Center</li>
|
|
<li><i class="fa-solid fa-martini-glass-empty"></i> Residents' Sky Lounge</li>
|
|
<li><i class="fa-solid fa-film"></i> Private Cinema Room</li>
|
|
<li><i class="fa-solid fa-spa"></i> Wellness Spa & Sauna</li>
|
|
<li><i class="fa-solid fa-briefcase"></i> Business Center</li>
|
|
<li><i class="fa-solid fa-shield-halved"></i> 24/7 Concierge</li>
|
|
<li><i class="fa-solid fa-car"></i> Secure Parking</li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h3 class="section-title">Key Specifications</h3>
|
|
<div class="detail-item"><span class="label">Status</span> <span class="value">New Development</span></div>
|
|
<div class="detail-item"><span class="label">Property Type</span> <span class="value">Condominium</span></div>
|
|
<div class="detail-item"><span class="label">Year Built</span> <span class="value">2025</span></div>
|
|
<div class="detail-item"><span class="label">Technology</span> <span class="value">Integrated Smart Home</span></div>
|
|
<div class="detail-item"><span class="label">Design</span> <span class="value">Sustainable & Eco-Friendly</span></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">THE VERTICE</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>Two-Bedroom Residence</h4>
|
|
<div class="floorplan-stats-p5">
|
|
<div class="stat">
|
|
<div class="value">1,450</div>
|
|
<div class="label">SQ. FT.</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">2</div>
|
|
<div class="label">BEDROOMS</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">2</div>
|
|
<div class="label">BATHROOMS</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">1</div>
|
|
<div class="label">BALCONY</div>
|
|
</div>
|
|
</div>
|
|
<p class="description">A thoughtfully designed space perfect for urban professionals or small families, combining comfort with panoramic city views.</p>
|
|
</div>
|
|
</div>
|
|
<div class="floorplan-showcase">
|
|
<div class="floorplan-image-p5 penthouse"></div>
|
|
<div class="floorplan-info-p5">
|
|
<h4>Three-Bedroom Penthouse</h4>
|
|
<div class="floorplan-stats-p5">
|
|
<div class="stat">
|
|
<div class="value">3,200</div>
|
|
<div class="label">SQ. FT.</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">3</div>
|
|
<div class="label">BEDROOMS</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">3.5</div>
|
|
<div class="label">BATHROOMS</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="value">1</div>
|
|
<div class="label">TERRACE</div>
|
|
</div>
|
|
</div>
|
|
<p class="description">The pinnacle of luxury living, this penthouse offers expansive spaces, premium finishes, and exclusive access to a private rooftop terrace.</p>
|
|
</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">Allowed (w/ restrictions)</div></div>
|
|
<div class="spec-item"><div class="label">Smoking</div><div class="value">In designated areas</div></div>
|
|
<div class="spec-item"><div class="label">Availability</div><div class="value">Q4 2025</div></div>
|
|
<div class="spec-item"><div class="label">Parking</div><div class="value">2 Spaces per Unit</div></div>
|
|
<div class="spec-item"><div class="label">Security Deposit</div><div class="value">2 Months</div></div>
|
|
<div class="spec-item"><div class="label">Utilities</div><div class="value">Sub-metered</div></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">THE VERTICE</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>Experience The Vertice firsthand. Contact our sales executive to arrange an exclusive tour of the property and available residences.</p>
|
|
<div class="contact-person-p6">
|
|
<div class="name">Alexander Valentine</div>
|
|
<div class="title">Sales Executive, Elysian Properties</div>
|
|
<div class="details">
|
|
(555) 123-9876<br>
|
|
alex.v@elysian.com
|
|
</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> Central Park (5 min)</li>
|
|
<li><i class="fa-solid fa-train-subway"></i> <strong>Transportation:</strong> Metro Line A (2 min walk)</li>
|
|
<li><i class="fa-solid fa-school"></i> <strong>Schools:</strong> Metropolis Intl. (10 min)</li>
|
|
<li><i class="fa-solid fa-cart-shopping"></i> <strong>Shopping:</strong> The Galleria Mall (8 min)</li>
|
|
<li><i class="fa-solid fa-plane-departure"></i> <strong>Airport:</strong> 25 min drive</li>
|
|
</ul>
|
|
</div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">THE VERTICE</span>
|
|
<span>Page 06 / 06</span>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |