Video Code Snippets for Web Development

1. Basic Video Embed

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

2. Autoplay & Loop Video

            
<video width="320" height="240" autoplay muted loop>
    <source src="movie.mp4" type="video/mp4">
</video>
            
            
        

3. Video with Poster Image

            
<video width="320" height="240" controls poster="poster.jpg">
    <source src="movie.mp4" type="video/mp4">
</video>
            
            
        

4. Multiple Video Formats

            
<video width="320" height="240" controls>
    <source src="movie.mp4" type="video/mp4">
    <source src="movie.ogg" type="video/ogg">
    <source src="movie.webm" type="video/webm">
</video>
            
            
        

5. Responsive Video

            
<div style="max-width: 100%; overflow: hidden">
    <video style="width: 100%; height: auto" controls>
        <source src="movie.mp4" type="video/mp4">
    </video>
</div>