How to add muliple video to page

Started by videosilva, January 23, 2018, 12:29:35 AM

videosilva

Don't know if this is the right area to ask if not sorry.

I want to have a page linking to youtube or WHAT EVER. I want to have the page show multiple options to view video on MY Page website. So instead of have just one video i need to have multiple click on to view this video idea. Some kind of carousel. Youtube use to have and the code to insert showing the last 5 videos uploaded. You would click the video you wanted and it would load on that page leaving the other video and links visible.

Hope that makes sense and what would be the best program / approach

SarahWilding

You can simply put video tags in HTML like below
<video width="320" height="240" controls>
   <source src="movie.mp4" type="video/mp4">
   <source src="movie.ogg" type="video/ogg">
   Your browser does not support the video tag.
</video>

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>

Add video By CSS
video {
    display: block;
    margin-bottom: 1em;
}