107 lines
2.5 KiB
HTML
107 lines
2.5 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>
|
|
hr {
|
|
background-color: black;
|
|
height: 4px;
|
|
width: 75%;
|
|
}
|
|
|
|
.info-box {
|
|
max-width: 80%;
|
|
width: 80%;
|
|
padding: 2rem 4rem;;
|
|
border-radius: 4rem;
|
|
|
|
background-color: var(--gold);
|
|
}
|
|
.info-box h1, p {
|
|
color: black;
|
|
}
|
|
|
|
.info-flex {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
width: 80%;
|
|
}
|
|
|
|
.info-flex:nth-child(1) {
|
|
width: 30%;
|
|
}
|
|
.info-flex:nth-child(2) {
|
|
width: 60%;
|
|
}
|
|
|
|
/** MOBILE */
|
|
@media screen and (max-width: 850px) {
|
|
|
|
.info-flex {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
.info-flex section {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
</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">
|
|
|
|
<section class="info-box">
|
|
<h1><em>All</em> Ceramic Coatings Include</h1>
|
|
<hr />
|
|
<p>testing</p>
|
|
</section>
|
|
|
|
<div class="info-flex">
|
|
<section class="info-box">
|
|
|
|
</section>
|
|
|
|
<section class="info-box">
|
|
</section>
|
|
</div>
|
|
</main>
|
|
<script src="js/hamburger.js"></script>
|
|
</body>
|
|
</html>
|