Difference between revisions of "IT-SDK-HTML"

From wiki.samerhijazi.net
Jump to navigation Jump to search
(Created page with "<pre class="code"> <audio controls> <source src="[url-to-m3u]" type="audio/mpegURL" /> </audio> </pre>")
 
Line 1: Line 1:
 
<pre class="code">
 
<pre class="code">
 +
<!DOCTYPE html>
 +
<html>
 +
<body>
 
<audio controls>
 
<audio controls>
    <source src="[url-to-m3u]" type="audio/mpegURL" />
+
  <source src="./001.mp3" type="audio/mpeg">
 +
Your browser does not support the audio element.
 
</audio>
 
</audio>
 +
<p>
 +
<audio controls>
 +
  <source src="./quran.m3u" type="audio/mpegurl">
 +
Your browser does not support the audio element.
 +
</audio>
 +
</body>
 +
</html>
 
</pre>
 
</pre>

Revision as of 01:08, 5 January 2021

<!DOCTYPE html>
<html>
<body>
<audio controls>
  <source src="./001.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<p>
<audio controls>
  <source src="./quran.m3u" type="audio/mpegurl">
Your browser does not support the audio element.
</audio>
</body>
</html>