HTML Text Formatting
Your page will typically be in plain text but you can change this by using special elements.
You can do all of the following:
Each of the following have a start and end tag.
You can do all of the following:
Each of the following have a start and end tag.
Place your start tag, text, then your end tag.
- Bold Text
- <b>
- <p><b>This Paragraph Is Bold.</b></p>
- Important Text
- <strong>
- <p><strong>This Paragraph Is Strong.</strong></p>
- (personally the difference between bold and strong is small but "strong" is supposed to emphasize a "strong importance")
- Italic Text
- <i>
- <p><i>This Paragraph Is Italicized.</i></p>
- Emphasized Text
- <em>
- <p><em>This Paragraph Is Emphasized.</em></p>
- Marked Text (Highlighted)
- <mark>
- <p><mark>This Paragraph Is Highlighted.</mark></p>
- OR
- <p>This <mark>Word</mark> Is Highlighted.</p>
- Small Text
- <small>
- <p><small>This Paragraph Is Small.</small></p>
- OR
- <p>This <small>Word</small> Is Small.</p>
- Deleted (removed/ line through) Text
- <del>
- <p><del>This Paragraph Is Deleted.</del></p>
- OR
- <p>This <del>Word</del> Is Deleted.</p>
- Inserted Text (underlined)
- <ins>
- <p><ins>This Paragraph Is Underlined.</ins></p>
- OR
- <p>This <ins>Word</ins> Is Underlined.</p>
- Subscripts
- <sub>
- <p><sub>This Paragraph Is Subscripted.</sub></p>
- OR
- <p>This <sub>Word</sub> Is Subscripted.</p>
- Superscripts
- <sup>
- <p><sup>This Paragraph Is Superscripted.</sup></p>
- OR
- <p>This <sup>Word</sup> Is Superscripted.</p>
Comments
Post a Comment