HTML TAG TEST

========== HTML TAG TEST ===========

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

The HTML “P” element (or HTML Paragraph Element) represents a paragraph of text. Paragraphs are usually represented in visual media as blocks of text that are separated from adjacent blocks by vertical blank space and/or first-line indentation. Paragraphs are block-level elements.

This is span tag. The “span” tag is used to group inline-elements in a document. The “span” tag provides no visual change by itself. The “span” tag provides a way to add a hook to a part of a text or a part of a document.


The HTML “UL” element (or HTML Unordered List Element) represents an unordered list of items, namely a collection of items that do not have a numerical ordering, and their order in the list is meaningless. Typically, unordered-list items are displayed with a bullet, which can be of several forms, like a dot, a circle or a squared. The bullet style is not defined in the HTML description of the page, but in its associated CSS, using the list-style-type property.
Unordered List Items

  • Unordered List item 1
  • Unordered List item 2
  • Unordered List item 3
  • Unordered List item 4
  • Unordered List item 5

The HTML “OL” Element (or HTML Ordered List Element) represents an ordered list of items. Typically, ordered-list items are displayed with a preceding numbering, which can be of any form, like numerals, letters or Romans numerals or even simple bullets. This numbered style is not defined in the HTML description of the page, but in its associated CSS, using the list-style-type property.
Ordered List Items

  1. Ordered List item 1
  2. Ordered List item 2
  3. Ordered List item 3
  4. Ordered List item 4
  5. Ordered List item 5


External Link

Creating a clickable image Example

MDN logo

The HTML “blockquote” Element (or HTML Block Quotation Element) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the “cite” element.