I am struggling to figure out how to add an MP4 video in the menu just above the “menu reviews info” navbar. I only come as far as using <video width="480" height="320" controls>
<source src="mp4.php" type="video/mp4">
</video>
and even tried adding before that $local_file = 'restaurant.mp4';
$size = filesize($local_file);
header("Content-Type: video/mp4");
header("Content-Length: ".$size);
readfile($local_file);
Any help appreciated (note this is just example code, the real URL to the MP4, is different.