Files
http-server/bin/www/multimedia.html

32 lines
853 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<title>Testing Grounds</title>
<script src="test.js" defer></script>
</head>
<body>
<h1>This is testfile2.html</h1>
<p>Lorum Ipsum</p>
<a href="index.html">Back to index.html</a>
<br>
<p>Now supporting multimedia</p>
<br>
<img src="robedude.png" alt="Robe dude">
<br>
<video width="320" height="240" controls>
<source src="file_example_MP4_480_1_5MG.mp4" type="video/mp4">
Video tag not supported by your browser
</video>
<br>
<p>
Music from https://filmmusic.io:
"Ouroboros" by Kevin MacLeod (https://incompetech.com)
Licence: CC BY (http://creativecommons.org/licenses/by/4.0/)
</p>
<audio controls>
<source src="ouroboros-by-kevin-macleod.mp3" type="audio/mp3">
Audio tag not supported by your browser
</audio>
</body>
</html>