Html

In this tutorial, we're gonna talk about some tags which are used to format text.
They help us to emphasize important contents of webpages.
They're commonly used in main contents.

Start Reading ;

Semantic text formatters

The HTML tags which are called text formatters can be categorized into 2 groups:

  • Semantic formatters
  • Non-semantic formatters

The semantic formatters tell web browsers how the contents should look like. They also tell search engines (Google, Bing, etc…) what the contents are, or how important the contents are.

Here are common semantic formatters:

Sample code:

Result:

This content is Important and should look Bold
This content is Important and should look Italicized
This content is noted that it’s Not accurate and Deleted
subscript 8 superscript

Non-semantic text formatters

Non-semantic formatters only tell web browsers how the contents should look like. They do not describe the contents, neither tell search engines anything.

Here are common Non-semantic formatters:

Sample code:

Result:

This content should look Bold
This content should look Italicized
This content should look Underlined

Next: Inputs & Forms ;