CSS Video Embedding

 

CSS Video Embedding

CSS helps to customize the visual effects of video. If you are not familiar with videos, follow the HTML Video tutorial.

Example:

<body>
    <video controls>
        <source src="./Sigma Web Development Course.mp4" type="video/mp4"> Your browser does not support the video tag.
    </video>
</body>

style.css

video {
            width: 500px;
            height: 200px;
}

Output:

cwh tutorial image