<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Wedding Photography</title>
<style>
/* Add your CSS styles here */
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 2rem 0;
}
h1 {
font-size: 2.5rem;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: #fff;
}
.contact-form {
background-color: #f0f0f0;
padding: 1.5rem;
border-radius: 5px;
}
/* Add more styles as needed */
</style>
</head>
<body>
<header>
<h1>Wedding Photography</h1>
<p>Capturing Your Special Moments</p>
</header>
<div class=”container”>
<h2>Welcome to Our Wedding Photography</h2>
<p>Celebrate your love story with stunning photographs that will last a lifetime. Our professional photographers are dedicated to capturing the beauty and emotion of your special day.</p>

<h2>Our Services</h2>
<ul>
<li>Engagement Sessions</li>
<li>Wedding Day Coverage</li>
<li>Custom Photo Albums</li>
<li>High-Quality Prints</li>
</ul>

<h2>Portfolio</h2>
<img src=”wedding1.jpg” alt=”Wedding Photo 1″>
<img src=”wedding2.jpg” alt=”Wedding Photo 2″>
<img src=”wedding3.jpg” alt=”Wedding Photo 3″>

<h2>Contact Us</h2>
<div class=”contact-form”>
<form action=”submit_form.php” method=”post”>
<label for=”name”>Name:</label>
<input type=”text” id=”name” name=”name” required><br>
<label for=”email”>Email:</label>
<input type=”email” id=”email” name=”email” required><br>
<label for=”message”>Message:</label>
<textarea id=”message” name=”message” rows=”4″ required></textarea><br>
<button type=”submit”>Submit</button>
</form>
</div>
</div>
</body>
</html>