What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

How to add video on HTMP page?

BlueWhale

New member
Joined
Dec 28, 2020
Messages
5
Reaction score
0
HTML Coins
0
Hello. Can someone explain me how to add videos on HTML page?

I will use this code to add images:

</div>
<div class="Gallery-Content--mediaContainer"><a name="NAME_OF_IMAGE.JPG"></a>
<div class="Gallery-Content--media">
<div class="imageContainer">
<img class="image-thumb" src="./NAME_OF_FOLDER_THAT_CONTAINS_IMAGE/NAME_OF_IMAGE.JPG"/>Full-size image is <a href="./NAME_OF_FOLDER_THAT_CONTAINS_IMAGE/NAME_OF_PHOTO,JPG">here.</a>
</div>

but when i replace the name of the photo with the name of the video, it doesn't work.
 
I tried to use this code. It displays only a picture of part of the video, but there is no play button.

<video width="320" height="240" autoplay>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
 
I tried to use this code. It displays only a picture of part of the video, but there is no play button.

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

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back