#### HTML Code for Luna Electrical and Illumination Lights Website
html
Luna Electrical and Illumination Lights
Welcome to Luna Electrical and Illumination Lights
Discover the perfect lighting solutions for your home or business.
About Us
Luna Electrical and Illumination Lights is a leading provider of high-quality electrical and lighting products. With years of experience in the industry, we offer a wide range of lighting solutions for residential, commercial, and industrial applications.
Our Services
Installation of electrical systems
Indoor and outdoor lighting solutions
Energy-efficient lighting upgrades
Electrical repairs and maintenance
Custom lighting design
Contact Us
For inquiries or to schedule a consultation, please fill out the form below or give us a call.
#### CSS Code (styles.css)
css
/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Global styles */
body {
font-family: Arial, sans-serif;
line-height: 1.5;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
}
nav ul {
list-style: none;
display: flex;
justify-content: space-between;
}
nav ul li {
margin-right: 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
padding: 20px;
}
section {
margin-bottom: 20px;
}
h1, h2 {
margin-bottom: 10px;
}
form label {
display: block;
margin-bottom: 5px;
}
form input, form textarea {
width: 100%;
padding: 5px;
margin-bottom: 10px;
}
form button {
background-color: #333;
color: #fff;
padding: 5px 10px;
border: none;
cursor: pointer;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
#### JavaScript Code (script.js)
javascript
// Add interactivity here if needed
Please note that the provided HTML, CSS, and JavaScript code is a basic template for the Luna Electrical and Illumination Lights website. You can customize and enhance it further based on your specific requirements and design preferences.