The Meaning Of "Tags" in HTML & Web pages

The Meaning Of "Tags" in HTML & Web pages

On clothes, tags usually indicate the brand, size of the garment, fabrics used, and the washing instructions. In Web pages, tags are keywords/letters inside of angled brackets <> that indicate what should be displayed on the screen when the page loads. Tags are the basic formatting tool used in HTML (hypertext markup language) and other markup languages, such as XML. For example, to create a table on a Web page, the <table> tag is used. To add a link to a web page, the <a> tag is used. Most tags have opening and closing tags like the examples above. Opening tag: <table>, Closing tag: </table>. The opening and closing tags are usually the same, the only the difference is the forward slash ” / ” in the closing tag.

If you want something to show up in bold on a Web page, you would use the “b tag”. For example, the HTML code below:

My name is <b>Saliu Abdulrazaq</b>

would show up as:

My name is Saliu Abdulrazaq

Tags are a fundamental part of HTML and they are pretty simple to understand. If you want to build a web site of your own, you can either create it from scratch (using a text editor and typing your own tags) or you can use content management system (CMS) like WordPress or Drupal to create your site.