Write down what the following HTML tags will perform > a. b.c. d. e.
Answer:a. <table>
· This tag will create a table.
· <table> defines the beginning of the table and should end with </table>
b. <td width>
· This tag inserts data in the table cell with width attribute specified.
· <td> defines the beginning of the table cell and should end with </td>
c. <embed>
· <embed> is used to add multimedia elements like audio, video etc. <embed> should end with </embed> to be considered well-formed HTML.
· Example: <embed src="value"></embed>
d. <a>
· <a> is used to insert a hyperlink in a web page. This is call ‘anchor’ tag.
· Example: <a href="audio.mp3">Play the audio file.</a> or <a href="url">Link text</a>
e. <object>
· <object> is also a tag used to add multimedia elements
· Example : <object data="audio.mid" type="audio/midi"></object>
No comments:
Post a Comment