<!DOCTYPE html>
<html>
<head>
<title>Studio Foto Cahaya</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
}
header {
background: #222;
color: white;
padding: 40px;
}
.gallery img {
width: 300px;
margin: 10px;
}
footer {
background: #eee;
padding: 20px;
}
</style>
</head>
<body>

<header>
<h1>Studio Foto Cahaya</h1>
<p>Prewedding, Wisuda, Keluarga, dan Produk</p>
</header>

<section>
<h2>Portofolio</h2>
<div class="gallery">
<img src="foto1.jpg" alt="Foto 1">
<img src="foto2.jpg" alt="Foto 2">
<img src="foto3.jpg" alt="Foto 3">
</div>
</section>

<section>
<h2>Booking</h2>
<p>Hubungi kami melalui WhatsApp: 08xxxxxxxxxx</p>
</section>

<footer>
<p>© 2026 Studio Foto Cahaya</p>
</footer>

</body>
</html>