| 1. |
Explain the basic tags in HTML with examples (any five tags). |
|
Answer» 1. Bold Text: You can bold text to emphasize information on your web page. Bold text is useful for introducing new terms and highlighting important phrases on a Web page. Tag: <B> SOME TEXT </B> EXAMPLE: <BODY> <B> THIS IS A Bold TEXT </B> </BODY> 2. Underline Text: Tag: <U> Some text </U> Example: <BODY> <U> You can underline this text </U> </BODY> 3. Italicise Text: Tag: <I> SOME TEXT </I> EXAMPLE: <BODY> <I> THIS IS A Itilicize TEXT </I> </BODY> 4. Big Text: Tag: <Big> SOME TEXT </Big> EXAMPLE: <BODY> <Big> THIS IS A Big TEXT</Big> </BODY> 5. Marquee Text: To scroll text horizontally. Tag: <Marquee> some text </marquee> Example: <marquee> The text is moving < /marquee> |
|