Hi. I can put up videos on the website but I would like some sort of container that allowed then to be downloadable.
This is a simple sample file. P.S. this is still on a PHP5.4 server but will be upgraded to PHP7 eventualy whe the provider does so.

<body>

<div id="PageTitle">
	<img src="images/LibraryBanner.jpg" alt="">
</div>

<?
 include('SideMenu.php');
?>

<div id="PageContent">
<h2>My Downloads</h2>
<br>
<a href="video/weaver-02.mp4">Video date 2023-04-03 14:21</a>
</div>
</body>

What Imeant was, I can right click on the image and download it.

    Hint: The question mark ? can be used in your writing to indicate a question.

    <a href="foo.mp4"><img src="image"></a>

      Or As I have been sown 🙂

      <video width="320" height="240" controls>
      	<source src="video/weaver-02.mp4" type="video/mp4">
      </video>
      
        Write a Reply...