Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html audio tag

<audio controls>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Comment

audio html tag

<figure>
    <figcaption>Listen to the T-Rex:</figcaption>
    <audio
        controls
        src="/media/cc0-audio/t-rex-roar.mp3">
            Your browser does not support the
            <code>audio</code> element.
    </audio>
</figure>
Comment

audio html tag

MIME Types for Audio Formats
Format	MIME-type
MP3		audio/mpeg
OGG		audio/ogg
WAV		audio/wav

If simply audio '<audio>' tag is written then audio controls will not appear on the web page.
and for showing audio controller we need to write controls attribute in audion tag '<audio controls>'.

Example
<audio controls>
  <source src="horse.mp3" type="audio/mpeg">
</audio>
Comment

html audio tag

<audio controls>
<source src="sound.ogg" type="audio/ogg"/>
<source src="sound.mp3" type="audio/mpeg"/>
</audio> 
this will also work in react js & html
Comment

PREVIOUS NEXT
Code Example
Html :: bootstrap 4 label label-success 
Html :: example for d3 
Html :: #c 
Html :: heiht jtml 
Html :: const uno = <h1hola, 1</h1 
Html :: row card 
Html :: label aligned next to input 
Html :: html detection vpn script 
Html :: readium github 
Html :: rainbow hr html 
Html :: html metatags for facebook 
Html :: embed using shortcode 
Html :: html5 mssenger 
Html :: macbook boot in verbose mode 
Html :: kodingan menambahkan judul isi di html 
Html :: can we manipulate the html elements 
Html :: html form meta data for image encryption 
Html :: how to make a html tag in html 
Html :: simple website with html and css 
Html :: How many script tags can you add in a html file? 
Html :: bulma file upload 
Css :: make text unselectable css 
Css :: remove bullets from list css 
Css :: table add margin between rows 
Css :: html details summary marker remove 
Css :: remove blue border on a input 
Css :: css font color gradient 
Css :: how to slow down hover effect css 
Css :: place item center in css using grid 
Css :: floating object animation css 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =