I searched all day along and finally found out all I need on USA2017.
/From the "Feedback collection on USA2017.INUMO.RU", USA2017.INUMO.RU./
Old tags <strong>, <b>, <em>, <i>. Lesson 11. In this lesson we will study some deprecated tags. We can't recommend to use these old tags in HTML pages of new project. However, we have to know these tags, because they were often used on older pages.
| Old tag | Description | Modern alternative |
|---|---|---|
| <strong></strong> | this HTML element defines strong text, with added semantic "strong" importance. | <span style="font-weight:bold;"> </span> |
| <b></b> | this HTML element defines bold text, without any extra importance. (this element ever older then <strong>) | <span style="font-weight:bold;"> </span> |
| <em></em> | this HTML element defines emphasized text, with added semantic importance. | <span style="font-style:italic;"> </span> |
| <i></i> | this HTML element defines italic text, without any extra importance. (this element ever older then <em>) | <span style="font-style:italic;"> </span> |
<p> <strong> The HTML element strong defines strong text, with added semantic "strong" importance. </strong> </p> <p> <b> The HTML element b defines bold text, without any extra importance. </b> </p> <p> <span style="font-weight:bold;"> Attribute with property style="font-weight:bold;" - Modern alternative for old tags strong and b. </span> </p> <p> <em> The HTML element em defines emphasized text, with added semantic importance. </em> </p> <p> <i> The HTML element i defines italic text, without any extra importance. </i> </p> <p> <span style="font-style:italic"> Attribute with property style="font-style:italic;" - Modern alternative for old tags em and i. </span> </p>
Attention!
Thank you for visit! I wish you great success in present and future!