/jdmaciel
├── index.html
├── services.html
├── portfolio.html
├── contact.html
├── links.html
├── css/
│ └── style.css
└── images/
└── logo.png

body {
margin: 0;
padding: 0;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
background-color: #0f1722;
color: #e5e5e5;
}

.container {
width: 960px;
margin: 0 auto;
}

header {
padding: 30px 0;
border-bottom: 1px solid #2a3445;
}

header img {
float: left;
}

nav {
float: right;
margin-top: 40px;
}

nav a {
color: #d4af37;
text-decoration: none;
margin-left: 20px;
font-size: 14px;
letter-spacing: 1px;
}

nav a:hover {
color: #ffffff;
}

.clear {
clear: both;
}

.banner {
padding: 80px 0;
text-align: center;
}

.banner h1 {
font-size: 42px;
margin: 0;
color: #ffffff;
}

.banner p {
font-size: 18px;
color: #d4af37;
letter-spacing: 2px;
}

section {
padding: 60px 0;
}

section h2 {
color: #d4af37;
font-size: 26px;
border-bottom: 1px solid #2a3445;
padding-bottom: 10px;
}

section p {
line-height: 1.8;
font-size: 15px;
}

footer {
text-align: center;
padding: 30px 0;
border-top: 1px solid #2a3445;
font-size: 13px;
color: #888;
}

 

 

 

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JD Maciel - Flooring Quality</title>
<link rel="stylesheet" href="css/style.css">
</head>

<body>

<div class="container">

<header>
<img src="images/logo.png" alt="JD Maciel">
<nav>
<a href="index.html">HOME</a>
<a href="services.html">SERVICES</a>
<a href="portfolio.html">PORTFOLIO</a>
<a href="contact.html">CONTACT</a>
<a href="links.html">LINKS</a>
</nav>
<div class="clear"></div>
</header>

<div class="banner">
<h1>JD Maciel</h1>
<p>FLOORING QUALITY</p>
</div>

<section>
<h2>Welcome</h2>
<p>
JD Maciel is a company specialized in high-end flooring installation,
delivering excellence, precision and refined finishes for residential
and commercial projects.
</p>
</section>

<footer>
© JD Maciel – Flooring Quality. All rights reserved.
</footer>

</div>

</body>
</html>

 

 

 

 

 

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Services - JD Maciel</title>
<link rel="stylesheet" href="css/style.css">
</head>

<body>
<div class="container">

<header>
<img src="images/logo.png" alt="JD Maciel">
<nav>
<a href="index.html">HOME</a>
<a href="services.html">SERVICES</a>
<a href="portfolio.html">PORTFOLIO</a>
<a href="contact.html">CONTACT</a>
<a href="links.html">LINKS</a>
</nav>
<div class="clear"></div>
</header>

<section>
<h2>Our Services</h2>
<p>• Ceramic Tile Installation</p>
<p>• Marble Installation</p>
<p>• Granite Installation</p>
<p>• Residential & Commercial Flooring</p>
<p>• Precision Cutting and Finishing</p>
</section>

<footer>
© JD Maciel – Flooring Quality.
</footer>

</div>
</body>
</html>

 

 

 

 

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Portfolio - JD Maciel</title>
<link rel="stylesheet" href="css/style.css">
</head>

<body>
<div class="container">

<header>
<img src="images/logo.png" alt="JD Maciel">
<nav>
<a href="index.html">HOME</a>
<a href="services.html">SERVICES</a>
<a href="portfolio.html">PORTFOLIO</a>
<a href="contact.html">CONTACT</a>
<a href="links.html">LINKS</a>
</nav>
<div class="clear"></div>
</header>

<section>
<h2>Portfolio</h2>
<p>
Our portfolio showcases refined flooring projects using ceramic tile,
marble and granite, always focusing on elegance and durability.
</p>
</section>

<footer>
© JD Maciel – Flooring Quality.
</footer>

</div>
</body>
</html>

 

 

 

 

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact - JD Maciel</title>
<link rel="stylesheet" href="css/style.css">
</head>

<body>
<div class="container">

<header>
<img src="images/logo.png" alt="JD Maciel">
<nav>
<a href="index.html">HOME</a>
<a href="services.html">SERVICES</a>
<a href="portfolio.html">PORTFOLIO</a>
<a href="contact.html">CONTACT</a>
<a href="links.html">LINKS</a>
</nav>
<div class="clear"></div>
</header>

<section>
<h2>Contact</h2>
<p>Email: info@jdmaciel.com</p>
<p>Phone: (000) 000-0000</p>
</section>

<footer>
© JD Maciel – Flooring Quality.
</footer>

</div>
</body>
</html>

 

 

 

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Links - JD Maciel</title>
<link rel="stylesheet" href="css/style.css">
</head>

<body>
<div class="container">

<header>
<img src="images/logo.png" alt="JD Maciel">
<nav>
<a href="index.html">HOME</a>
<a href="services.html">SERVICES</a>
<a href="portfolio.html">PORTFOLIO</a>
<a href="contact.html">CONTACT</a>
<a href="links.html">LINKS</a>
</nav>
<div class="clear"></div>
</header>

<section>
<h2>Useful Links</h2>
<p><a href="#" style="color:#d4af37;">Instagram</a></p>
<p><a href="#" style="color:#d4af37;">Facebook</a></p>
</section>

<footer>
© JD Maciel – Flooring Quality.
</footer>

</div>
</body>
</html>