Every website ever built uses exactly these three technologies — nothing more, nothing less.
<h1> <p> <div><header> <h1>🎬 Movie Explorer</h1> <p>Click an actor to see movies</p> </header> <section id="actors"> <div class="card"> <img src="brad.jpg" /> <h2>Brad Pitt</h2> </div> </section>
Click an actor to see movies
.card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.1); transition: transform .2s; } .card:hover { transform: translateY(-6px); }
// Fetch movies from TMDB async function loadMovies(actorId) { const data = await fetch( `/person/${actorId}/movie_credits` ); const json = await data.json(); renderMovies(json.cast); }