Difference between revisions of "IT-SDK-HTML"
Jump to navigation
Jump to search
Samerhijazi (talk | contribs) (Created page with "<pre class="code"> <audio controls> <source src="[url-to-m3u]" type="audio/mpegURL" /> </audio> </pre>") |
Samerhijazi (talk | contribs) |
||
| Line 1: | Line 1: | ||
<pre class="code"> | <pre class="code"> | ||
| + | <!DOCTYPE html> | ||
| + | <html> | ||
| + | <body> | ||
<audio controls> | <audio controls> | ||
| − | + | <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>