I have a video in a .mov format. The problem is video has a very high resolution and has a 2GB size. I want to include it on a section from my website and I want to ask what is the best method for that? I was thinking for an iframe, but I don't know if that is possible.
Thank you!
Try:
<video width="400" height="300" controls="controls">
<source src="path/to/your/video" type='video/mov'>
</video>
Or try:
<iframe src="path/to/your/video" width="400" height="300"></iframe>