HTML inline text semantic/formatting to define the meaning, structure, or style of a word, line, or any arbitrary piece of text.
<b>
- bold text with no importance<strong>
- important text, bold<i>
- italic text<em>
- emphasized text<small>
- small text<mark>
- marked/highlighted textThe html <b> element is used to draw the reader's attention to the element's contents, which are not otherwise granted special importance.
<b>This is bold text</b>
The html <strong> element indicates that its contents have strong importance, seriousness, or urgency. Browsers typically render the contents in bold type.
<strong>This text is important!</strong>
The html <i> element represents a range of text that is set off from the normal text
The content inside is typically displayed in italic.
<i>This text is in italics!</i>
The html <em> element defines emphasized text. The content inside is typically displayed in italic.
<em>This text is emphasized</em>
The html <small> element represents side-comments and small print, like copyright and legal text.
<small>This is some smaller text.</small>
The html <mark> element represents text which is marked or highlighted for reference or notation purposes.
<p>This is <mark> marked</mark> text.</p>
This is marked text.