InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between , tags and , tags? |
|
Answer» The effect on a normal webpage of the tags <strong>, <b> and <em>, <i> is the same. <b> and <i> tags stands for bold and italic. These two tags only APPLY font styling and bold tag <b>, just adds more ink to the text, these tags don't say anything about the text. Whereas, <strong> and <em> tags represent that the span of text is of strong importance or more importance and EMPHATIC stress respectively than the rest of the text. These tags have semantic MEANING. |
|