basic video player html
// basic video player html
<video class="video-container" controls muted autoplay loop>
<source src="./video.mp4" type="video/mp4"/>
</video>
basic video player html
// basic video player html
<video class="video-container" controls muted autoplay loop>
<source src="./video.mp4" type="video/mp4"/>
</video>
html 5 video
<video width="480" height="320" controls>
// all browsers support mp4
<source src="your_video_file_name.mp4" type="video/mp4">
// safari doesn't support ogg
<source src="your_video_file_name.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us