#### HTML Code for Lensmen Photography and Cirque du Soleil Event Photography
html
Lensmen Photography & Cirque du Soleil Event Photography
Welcome to Lensmen Photography & Cirque du Soleil Event Photography
**Lensmen Photography** specializes in capturing emotions, telling stories, and creating memories through a wide range of photography genres, including weddings, portraits, events, commercial, and editorial.
**Cirque du Soleil Event Photography** aims to capture the magic and artistry of Cirque du Soleil performances, providing a unique visual experience for event attendees.
Portfolio
About Us
**Lensmen Photography** and **Cirque du Soleil Event Photography** work closely with clients to understand their unique vision and style, striving to make each photoshoot and event photography experience personalized and unforgettable.
Contact Us
#### CSS Code (styles.css)
css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}
nav ul {
list-style: none;
}
nav ul li {
display: inline;
margin: 0 1rem;
}
nav ul li a {
text-decoration: none;
color: #fff;
}
section {
padding: 2rem;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
}
form {
display: flex;
flex-direction: column;
max-width: 300px;
margin: 0 auto;
}
form label, form input, form textarea {
margin: 0.5rem 0;
}
form input, form textarea {
padding: 0.5rem;
border: 1px solid #ccc;
}
form input[type="submit"] {
background-color: #333;
color: #fff;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
}
#### JavaScript Code (script.js)
javascript
// Interactive functionality can be added here
// For example, form validation, image gallery sliders, etc.
This HTML code provides a basic structure for a website showcasing Lensmen Photography and Cirque du Soleil Event Photography. The CSS and JavaScript files can be used to style the website and add interactive functionality, respectively.