Computer Science, asked by Alia5300, 1 year ago

How to use audio and animation on web pages html code?

Answers

Answered by Kriteshojha
1
<audio src="url here">
If ur talking about gif animation then,
<img src="filename.gif">
Answered by StaceeLichtenstein
1

For audio

<audio >

<source src="path" type="audio/filename">

</audio>

For Animation

<img src="file-name.gif">

Explanation:

  • In the HTML programming code we have used the <audio> tag to including the audio in the web page Following are the example of audio tag in the web page.

For example :

<audio >

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

</audio>

  • In the HTML programming code we have used the <img> tag to including the animation in the web page Following are the example of animation tag in the web page.

For example :

<img src="san.gif">

Learn More :

  • brainly.in/question/2956403
  • brainly.in/question/7337244
Similar questions