Add testfiles to serve

This commit is contained in:
2019-06-30 10:01:08 +02:00
parent 4d90d18660
commit c63e5a8523
13 changed files with 143 additions and 4 deletions

31
bin/www/multimedia.html Executable file
View File

@@ -0,0 +1,31 @@
<!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>