651 lines
23 KiB
HTML
651 lines
23 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
name="description"
|
|
content="Luxury Detailing Maine provides mobile professional car cleaning services in the Portland Area"
|
|
/>
|
|
<title>Luxury Detailing Maine</title>
|
|
<link href="css/style.css" rel="stylesheet" />
|
|
<link href="css/dropdown.css" rel="stylesheet" />
|
|
<link href="css/hamburger.css" rel="stylesheet" />
|
|
|
|
<style>
|
|
section {
|
|
max-width: 75%;
|
|
width: 75%;
|
|
gap: 2rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
#book-button {
|
|
background-color: var(--black);
|
|
color: var(--gold);
|
|
|
|
border: 1px solid var(--dark-gold);
|
|
border-radius: 5rem;
|
|
|
|
padding: .5rem 1rem;
|
|
margin: 1rem 0 0 0;
|
|
|
|
font-size: 1rem;
|
|
text-decoration: none;
|
|
transition: 0.5s ease;
|
|
}
|
|
#book-button:hover {
|
|
cursor: pointer; background-color: #000;
|
|
box-shadow: 0px 0px 15px var(--gold);
|
|
}
|
|
#book-button:active {
|
|
background-color: var(--gold);
|
|
}
|
|
|
|
#book-link {
|
|
display: block;
|
|
width: 50%;
|
|
margin-top: 5rem;
|
|
}
|
|
|
|
/** Dropdown Menu Style Overrides */
|
|
|
|
.dropdown {
|
|
width: 100%;
|
|
border: 1px solid var(--gold);
|
|
transition: 2s;
|
|
}
|
|
.dropdown:hover {
|
|
border: 1px solid white;
|
|
}
|
|
|
|
/** Prevent nested dropdowns from having borders */
|
|
.dropdown .dropdown {
|
|
border-left: none;
|
|
border-right: none;
|
|
}
|
|
|
|
.dropdown-header {
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 1rem;
|
|
text-align: left;
|
|
|
|
padding: 1.5rem 4rem 2rem 4rem;
|
|
border: none;
|
|
|
|
transition: 2s;
|
|
}
|
|
.dropdown-header:hover {
|
|
border: none;
|
|
}
|
|
|
|
.dropdown-arrow {
|
|
transform: rotate(-90deg);
|
|
}
|
|
.dropdown-arrow.open {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
.dropdown-header:hover span {
|
|
transform: rotate(-65deg); /** arrow hover effect */
|
|
}
|
|
|
|
.dropdown-header div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.dropdown-content {
|
|
text-align: left;
|
|
border: none;
|
|
}
|
|
.dropdown-content.open {
|
|
max-height: 2000px;
|
|
}
|
|
|
|
/**
|
|
TODO:
|
|
- desktop view should be FLEX ROW
|
|
- mobile view should be normal columns
|
|
- get rid of double border on dropdowns if nested
|
|
*/
|
|
.dropdown-body {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-items: space-around;
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
margin: 1rem 1rem 1.5rem 6rem;
|
|
}
|
|
|
|
.dropdown-body p {
|
|
padding-right: 4rem;
|
|
}
|
|
|
|
.dropdown-body-half {
|
|
flex-basis: 50%;
|
|
}
|
|
.dropdown-body-full {
|
|
flex-basis: 100%;
|
|
}
|
|
/** mobile rules */
|
|
/** MOBILE */
|
|
@media screen and (max-width: 850px) {
|
|
section {
|
|
width: 100%;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.dropdown-header {
|
|
padding: 1.5rem 1rem 2rem 1rem;
|
|
}
|
|
.dropdown-body {
|
|
margin: 1rem 1rem 1.5rem 3rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<a href="#main-content" class="skipLink">Skip to main content</a>
|
|
|
|
<header>
|
|
<div class="banner" role="banner">
|
|
<a href="index.html" class="logo" aria-label="Company Logo">LD</a>
|
|
|
|
<button
|
|
id="hamburger"
|
|
aria-label="Toggle mobile navigation menu"
|
|
aria-expanded="false"
|
|
>
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
</button>
|
|
|
|
<nav>
|
|
<a class="navLink" role="navigation" href="services.html">Services</a>
|
|
<a class="navLink" role="navigation" href="ceramic-coating.html">Ceramic Coating</a>
|
|
<a class="navLink" role="navigation" href="reviews.html">Reviews</a>
|
|
<a class="navLink" role="navigation" href="contact.html">About</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main id="main-content">
|
|
|
|
<!-- SERVICE PACKAGE SECTION -->
|
|
<section id="packages">
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<h1>Service Packages</h1>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
|
|
<!-- LEVEL ONE PACKAGE -->
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Level One</h2>
|
|
<p>Give your car the time, love, and care it deserves.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<span class="dropdown-body-half">
|
|
<h3>Interior</h3>
|
|
<ul>
|
|
<li>Vacuum & light carpet shampooing</li>
|
|
<li>Plastics, leather, and vinyls cleaning</li>
|
|
<li>Light seat shampooing</li>
|
|
<li>Interior & exterior window cleaning</li>
|
|
<li>Crack & crevice cleaning</li>
|
|
</ul>
|
|
</span>
|
|
|
|
<span class="dropdown-body-half">
|
|
<h3>Exterior</h3>
|
|
<ul>
|
|
<li>Hand wash & dry</li>
|
|
<li>Bug gut removal</li>
|
|
<li>Tire, wheel, and wheel well cleaning + tire shine</li>
|
|
<li>Window cleaning</li>
|
|
<li>Light door jam cleaning</li>
|
|
</ul>
|
|
</span>
|
|
|
|
<span class="dropdown-body-full">
|
|
<a target="_blank" class="book-link"
|
|
href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/XGQVAkJx15acdsEemvEr?productServiceId=sIUtLBqGS4mjAQNwHtI4&sku=rH37oV6muKqDXStXhH3k"
|
|
>
|
|
<button id="book-button">Book Level One Package Now</button>
|
|
</a>
|
|
</span>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- LEVEL TWO PACKAGE -->
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Level Two</h2>
|
|
<p>Tell the world you're proud of your car.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<span class="dropdown-body-half">
|
|
<h3>Interior</h3>
|
|
<ul>
|
|
<li>Vacuum & light carpet shampooing</li>
|
|
<li>Plastics, leather, and vinyls cleaning</li>
|
|
<li>Light seat shampooing</li>
|
|
<li>Interior & exterior window cleaning</li>
|
|
<li>Crack & crevice cleaning</li>
|
|
</ul>
|
|
</span>
|
|
|
|
<span class="dropdown-body-half">
|
|
<h3>Exterior</h3>
|
|
<ul>
|
|
<li>Hand wash & dry</li>
|
|
<li>Bug gut removal</li>
|
|
<li>Tire, wheel, and wheel well cleaning + tire shine</li>
|
|
<li><em>Clay service to remove embedded contamination</em></li>
|
|
<li><em>3 to 6 month ceramic paint sealant: gloss, protection, hydrophobic & self-cleaning properties</em></li>
|
|
</ul>
|
|
</span>
|
|
|
|
<span class="dropdown-body-full">
|
|
<a target="_blank" class="book-link"
|
|
href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/XGQVAkJx15acdsEemvEr?productServiceId=ZUyqKhnZtS3uAT9Auo2I&sku=EsEnqIEVcVedKRDITk7e"
|
|
>
|
|
<button id="book-button">Book Level Two Package Now</button>
|
|
</a>
|
|
<span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CERAMIC COATING SECTION -->
|
|
<section id="ceramic">
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<h1>Ceramic Coating</h1>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Elite Ceramic Coating</h2>
|
|
<p>Bring out and protect your car's shine for years to come.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
|
|
<span class="dropdown-body-half">
|
|
<h3>Description</h3>
|
|
<p>
|
|
A protective layer on your vehicle's surface that repels water,
|
|
dirt, and contaminants, making cleaning easier and enhancing the
|
|
paint's durability and shine for 3-5 years.
|
|
</p>
|
|
</span>
|
|
|
|
<span class="dropdown-body-half">
|
|
<h3>Includes</h3>
|
|
<ul>
|
|
<li>Hand wash</li>
|
|
<li>Decontamination of paint & glass</li>
|
|
<li>1 Step polish to remove light swirls and enhance gloss</li>
|
|
</ul>
|
|
</span>
|
|
|
|
<span class="dropdown-body-half">
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/Z2TzVLNpkirBka11huXA?productServiceId=EpBxqPABGIwdF1f3ujqS&sku=Et0iAwD3vqAQYtcNo596">
|
|
<button id="book-button">Book Elite Coating</button>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Complete Ceramic Coating</h2>
|
|
<p>Like a factory reset on your cars exterior, but 10x better.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<span class="dropdown-body-half">
|
|
<h3>Description</h3>
|
|
<p>
|
|
A protective layer on your vehicle's surface that repels water,
|
|
dirt, and contaminants, and UV rays, with insane gloss and shine
|
|
for 3-5 years.<br />
|
|
(Paint + Glass)
|
|
</p>
|
|
</span>
|
|
|
|
<span class="dropdown-body-half">
|
|
<h3>Includes</h3>
|
|
<ul>
|
|
<li>Hand wash & dry</li>
|
|
<li>Wheel cleaning</li>
|
|
<li>1 stage paint correction on all paint & glass</li>
|
|
<li>
|
|
<em>Free quarterly washes</em>
|
|
</li>
|
|
<li>
|
|
<em>Free annual decontamination and topper</em>
|
|
</li>
|
|
</ul>
|
|
</span>
|
|
|
|
<span class="dropdown-body-full">
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/Z2TzVLNpkirBka11huXA?productServiceId=EpBxqPABGIwdF1f3ujqS&sku=Et0iAwD3vqAQYtcNo596">
|
|
<button id="book-button">Book Complete Coating</button>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Wheel Wash</h2>
|
|
<p>Make your wheels glow and shine.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<span>
|
|
<h3>Disclaimer</h3>
|
|
<p>
|
|
Only available if the entire car receives a ceramic coating.
|
|
</p>
|
|
</span>
|
|
<span class="dropdown-body-full">
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/Z2TzVLNpkirBka11huXA?productServiceId=jFgdX1fB0AoMVmIhSSmP&sku=lCUwUjNUHf4NYqqKYRNS">
|
|
<button id="book-button">Book Wheel Wash</button>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- POLISHING + PAINT CORRECTION SECTION -->
|
|
<section id="polish">
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<h1>Polishing & Paint Correction</h1>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Paint Enhancement</h2>
|
|
<p>Bring back that gloss you know and love.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<span class="dropdown-body-half">
|
|
<h3>Disclaimer</h3>
|
|
<p>Must include an exterior wash & decontamination (price included).</p>
|
|
</span>
|
|
|
|
<span class="dropdown-body-half">
|
|
<h3>Includes</h3>
|
|
<ul>
|
|
<li>1-step polish to enhance gloss & reduce minor defects</li>
|
|
<li>Ceramic coating, sealant, or wax required after</li>
|
|
</ul>
|
|
</span>
|
|
|
|
<span class="dropdown-body-full">
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/W7MYzeflJr6yEAlpgreQ?productServiceId=CvJ0v88LfLS9De7I04qu&sku=EyZfDYm9fPEgr3FRl24h">
|
|
<button id="book-button">Book Paint Enhancement</button>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Paint Correction</h2>
|
|
<p>Give your paint a breath of fresh air.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<span class="dropdown-body-half">
|
|
<h3>Disclaimer</h3>
|
|
<p>Must include an exterior wash & decontamination (price included).</p>
|
|
</span>
|
|
|
|
<span class="dropdown-body-half">
|
|
<h3>Includes</h3>
|
|
<ul>
|
|
<li>2-step polish to eliminate 80-85% of defects </li>
|
|
<li>Restore shine and gloss</li>
|
|
<li>Ceramic coating, sealant, or wax required after</li>
|
|
</ul>
|
|
</span>
|
|
|
|
<span class="dropdown-body-full">
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/W7MYzeflJr6yEAlpgreQ?productServiceId=EDLsm6ynRPi4sKV0ajh1&sku=s1VcPPUMz3Y5n9B99e2F">
|
|
<button id="book-button">Book Paint Correction</button>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- EXTERIOR DETAILING SECTION -->
|
|
<section id="exterior">
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<h1>Exterior Detailing</h1>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Level One Exterior</h2>
|
|
<p>A safe and meticulous hand wash to reveal the true shine of your car.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<ul>
|
|
<li>Hand wash & dry</li>
|
|
<li>Bug gut removal</li>
|
|
<li>Tire, wheel, wheel well cleaning, and tire shine</li>
|
|
<li>Window cleaning</li>
|
|
<li>Light door jam cleaning</li>
|
|
</ul></br>
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/yT4vtoWKB5qGaQMaxOdd?productServiceId=TFqzf6t8BKh7vTGxfNBy&sku=Czg1xQxpwwf5ninBF6xq">
|
|
<button id="book-button">Book Level One Exterior</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Level Two Exterior</h2>
|
|
<p>Most popular.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<p>
|
|
For those who want their car to shine, be safe and protected
|
|
from harsh elements, self clean, and be a breeze to wash.
|
|
(Previously 'Wash, Clay, Seal')
|
|
</p><br />
|
|
|
|
<ul>
|
|
<li>Hand wash & dry</li>
|
|
<li>Bug gut removal</li>
|
|
<li>Tire, wheel, wheel well cleaning, and tire shine</li>
|
|
<li>Clay mitt to remove embedded contamination</li>
|
|
<li>3 to 6 month ceramic paint sealant: gloss, protection, hydrophobic & self-cleaning properties</li>
|
|
</ul></br>
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/yT4vtoWKB5qGaQMaxOdd?productServiceId=bc8YSJd6fl0CprnAY43r&sku=iUA7y7dwM4Kz51pBpQNI">
|
|
<button id="book-button">Book Level Two Exterior</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- INTERIOR DETAILING SECTION -->
|
|
<section id="interior">
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<h1>Interior Detailing</h1>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Level One Interior</h2>
|
|
<p>Clean as a whistle!</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<ul>
|
|
<li>Vacuum & light carpet shampooing</li>
|
|
<li>Plastics, leather, and vinyls cleaning</li>
|
|
<li>Light seat shampooing</li>
|
|
<li>Interior & exterior window cleaning</li>
|
|
<li>Crack & crevice cleaning</li>
|
|
</ul></br>
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/iy5yKtAhm0O0w0P05acA?productServiceId=3LCNMgeB58hjFwhg58BU&sku=MuCpgSMV0hU4sUdjAPBi">
|
|
<button id="book-button">Book Level One Interior</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="dropdown">
|
|
<div class="dropdown-header" onclick="toggleDropdown(this)">
|
|
<span class="dropdown-arrow">▼</span>
|
|
<div>
|
|
<h2>Level Two Interior</h2>
|
|
<p>Bring back the interior you love & protect it for months.</p>
|
|
</div>
|
|
</div>
|
|
<div class="dropdown-content">
|
|
<hr>
|
|
<div class="dropdown-body">
|
|
<ul>
|
|
<li>Vacuum & carpet shampooing</li>
|
|
<li>Plastics, leather, and vinyls scrubbed</li>
|
|
<li>Leather conditioning for protection and suppleness</li>
|
|
<li>Upholstery shampooing</li>
|
|
<li>Crack & crevice cleaning</li>
|
|
<li>6 month interior protection (Spills, UV, less dust, less cleaning, and plastic rejuvenation)</li>
|
|
</ul></br>
|
|
<a target="_blank" class="book-link" href="https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/yT4vtoWKB5qGaQMaxOdd?productServiceId=bc8YSJd6fl0CprnAY43r&sku=iUA7y7dwM4Kz51pBpQNI">
|
|
<button id="book-button">Book Level Two Interior</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<div id="footer-left">
|
|
©Luxury Detailing Maine 2025<br />
|
|
All rights reserved<br />
|
|
Portland, ME
|
|
</div>
|
|
<div id="footer-right">
|
|
207-807-6770<br />
|
|
example@email.com<br />
|
|
<a
|
|
href="https://www.instagram.com/luxurydetailingmaine/"
|
|
target="_blank"
|
|
>@luxurydetailingmaine</a
|
|
>
|
|
</div>
|
|
</footer>
|
|
<script src="js/hamburger.js"></script>
|
|
<script>
|
|
function toggleDropdown(headerClicked) {
|
|
let body = headerClicked.nextElementSibling;
|
|
let arrow = headerClicked.children[0];
|
|
|
|
headerClicked.parentElement.classList.toggle("open");
|
|
body.classList.toggle("open");
|
|
arrow.classList.toggle("open");
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|