data.forEach(movie => { // Create a div with a card class const card = document.createElement('div') card.setAttribute('class', 'card')
// Create an h1 and set the text content to the film's title const h1 = document.createElement('h1') h1.textContent = movie.title
// Create a p and set the text content to the film's description const p = document.createElement('p') movie.description = movie.description.substring(0, 300) // Limit to 300 chars p.textContent = `${movie.description}...`// End with an ellipses
// Append the cards to the container element container.appendChild(card)
// Each card will contain an h1 and a p card.appendChild(h1) card.appendChild(p) })
==Use data attributes to easily control the position of the carousel. data-slide accepts the keywords prev or next, which alters the slide position relative to its current position. Alternatively, use data-slide-to to pass a raw slide index to the carousel data-slide-to=”2”, which shifts the slide position to a particular index beginning with 0.==