<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jade & Iain's Wedding</title>
<style>
body, html {
margin: 0;
padding: 0;
scroll-behavior: smooth;
}
.section {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
color: #fff;
font-family: Arial, sans-serif;
}
#welcome { background-color: #ffc0cb; } /* light pink */
#about { background-color: #add8e6; } /* light blue */
#ceremony { background-color: #f08080; } /* light coral */
#reception { background-color: #90ee90; } /* light green */
#accommodations { background-color: #f0e68c; } /* khaki */
#rsvp { background-color: #dda0dd; } /* plum */
#registry { background-color: #87ceeb; } /* sky blue */
#faq { background-color: #ffdead; } /* navajo white */
#contact { background-color: #fa8072; } /* salmon */
</style>
</head>
<body>
<div id="welcome" class="section">
<h1>Welcome to Our Wedding</h1>
<p>Jade & Iain</p>
</div>
<div id="about" class="section">
<h2>About The Day</h2>
<p>May 10th, 2025</p>
</div>
<div id="ceremony" class="section">
<h2>Ceremony Details</h2>
<p>Hackney Town Hall</p>
<a href="https://maps.google.com?q=Hackney+Town+Hall" target="_blank">View on Google Maps</a>
</div>
<div id="reception" class="section">
<h2>Reception Details</h2>
<p>The Hoxton, Holborn</p>
<a href="https://maps.google.com?q=The+Hoxton,+Holborn" target="_blank">View on Google Maps</a>
</div>
<div id="accommodations" class="section">
<h2>Accommodations</h2>
<p>Hotels near The Hoxton:</p>
<ul>
<li><a href="https://examplehotel1.com">Hotel 1</a></li>
<li><a href="https://examplehotel2.com">Hotel 2</a></li>
<li><a href="https://examplehotel3.com">Hotel 3</a></li>
</ul>
</div>
<div id="rsvp" class="section">
<h2>RSVP</h2>
<a href="mailto:your.email@example.com">RSVP Here</a>
</div>
<div id="registry" class="section">
<h2>Registry</h2>
<p>Find us on [Registry Platform]</p>
<a href="https://registryexample.com">Our Registry</a>
</div>
<div id="faq" class="section">
<h2>FAQ</h2>
<p>Find answers to common questions here.</p>
</div>
<div id="contact" class="section">
<h2>Contact Us</h2>
<p>If you have any questions, email us at <a href="mailto:your.email@example.com">your.email@example.com</a></p>
</div>
</body>
</html>