0% found this document useful (0 votes)
4 views1 page

Part A2

The document provides HTML code for creating a web page that plays audio and video files. It includes examples of using the <video> tag for video playback, the <audio> tag for audio playback, an <a> tag to link to an audio file, and an <embed> tag for embedding video. The code specifies file paths for media files on a local system.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Part A2

The document provides HTML code for creating a web page that plays audio and video files. It includes examples of using the <video> tag for video playback, the <audio> tag for audio playback, an <a> tag to link to an audio file, and an <embed> tag for embedding video. The code specifies file paths for media files on a local system.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

2.

Multimedia: -

a) Develop a web page to play audio file using <a>Tag.

b) Develop a web

page to play video file using <Embed>Tag.

<!DOCTYPE html>

<html>

<body style="text-align: center">

<h1 style="color: green">PART-A2-PROGRAM</h1>

<p style="color:purple;font-size:22px"><b>Adding Video file</b></p>

<video width="500px" height="500px" controls="controls">

<source src="C:\Users\Shreeshanthi\Videos\Captures\media1.mp4" type="video/mp4" />

</video>

<p style="color:purple;font-size:22px"><b> Adding audio file</p>

<audio controls="controls">

<source src="C:\Users\Shreeshanthi\Downloads\bgm.mp3" type="audio/mp3">

</audio>

<br>

<p style="color:purple"><b> Play audio file using 'a' tag</p>

<a href="C:\Users\Shreeshanthi\Downloads\bgm.mp3">Play Audio</a>

<br>

<p style="color:purple;font-size:22px"><b> Play video file using embed tag </p>

<embed src="C:\Users\Shreeshanthi\Videos\Captures\media1.mp4" width="400px"


height="200px">

</body>

</html>

You might also like