InterviewSolution
Saved Bookmarks
| 1. |
Write and explain any four text formatting tags in HTML. |
|
Answer» Text formatting tags are given below. 1. <B> - This tag is based to make the text Bold Eg: <B>Computer application</B> 2. <I> - This tag is used to make the text in italics Eg: <I> computer application </I> 3. <U> - This tag is used to underline the text Eg: <U> computer application </U> 4. <S> - This tag is used for striking out the text Eg: <S> computer application </S> |
|