Search
 
SCRIPT & CODE EXAMPLE
 

HTML

how do you play audio files on html

<audio src="sound.mp3" autoplay></audio>
Comment

how to add audio in html

<audio controls>

  <source src="flag.ogg" type="audio/ogg">

  <source src="flag.mp3" type="audio/mpeg">
  
</audio>
Comment

play audio source on html

<audio controls>
  <source src="myAudio.mp3" type="audio/mpeg">
  <source src="myAudio.ogg" type="audio/ogg">
  <p>Your browser doesn't support HTML5 audio. Here is
     a <a href="myAudio.mp4">link to the audio</a> instead.</p>
</audio>
Comment

PREVIOUS NEXT
Code Example
Html :: iframe maps 
Html :: square div 
Html :: load content of html without reloading python django 
Html :: ayoaduwo 
Html :: facebook seo meta tags 
Html :: button as href 
Html :: input cursor color 
Html :: whitespace code 
Html :: bootstrap 5 modal 
Html :: HTML open link in new tab, target="_blank" 
Html :: html bottom right corner 
Html :: how to use custom domain name instead of localhost on xampp for linux 
Html :: bootstrap5 lineheight 
Html :: html unicode info icon 
Html :: mailto subject 
Html :: predefine data list in input 
Html :: html phone click to call 
Html :: nuxt link relative path 
Html :: how to write floating point numbers in html5 input 
Html :: how to make text big on big screens and smaller and smaller screen html 
Html :: aos library 
Html :: html pattern not working 
Html :: markdown color 
Html :: DISPLAY HTML input["datetime-local"] VALUE FROM MYSQL date_time 
Html :: lorem picsum 
Html :: how change button color in html 
Html :: html text alignment 
Html :: images in html 
Html :: hide top bar menu item odoo 
Html :: tabs bootstrap 3 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =