Attribute
Purpose
SrcSpecifies the URL of the video file
Control Displays the controls on the web page
Autoplay Plays the video file automatically when the web page is loaded
HeightSpecifies the height of the video player, which is displayed
Width Specifies the width of the video player, which is displayed

<HTML>

<HEAD><TITLE>Audio tag </TITLE></HEAD>

<BODY Bgcolor="Skyblue">

<P Align="center">

<FONT face="Monotype Corsiva" Color="Black" Size="6">"Where words fail, music speak"</FONT>

<Br><FONT face="Cambria" color="Darked" size="5">

<b>This quote clearly depicts the importance of music for a human being </b>

</FONT><br><br>

<AUDIO Controls Src="E:\audio_video\Happy.mp3" Autoplay</AUDIO>

<VIDEO Controls Src="E:\audio_video\story. mp4" Width="720" Height="540" Autoplay>

Your browser does not support the video tag

</VIDEO</BODY> </HTML>

TABLES

Tables arrange data in rows and columns and provide an attractive way to represent information.In HTML,tables allow the users to organise data like text, images, and links etc.In the form of rows and columns.

Tables are helpful in many ways, as they:

Let us have a look at the piece of data given here in a tabular format There are specific terms which we use while describing table's data:

Caption: The caption gives a description of the table. In this example,it is 'Student Information'.

Rows: These are the horizontal lines of data. Our example contains 4 rows-S.No.,1, 2 and 3.

Columns: These are the vertical lines of data. There are three columns in our example-S.No., Name, Grades.

Cell: It is the intersection of a column and a row. Our example contains 12 cells.

Headings:These are the individual cells which act as labels depicting the type of information in each column. In this example, these are S. No.,Name, and Grades.
page no:124