MJAE'S CODING JOURNEY

Common HTML Elements

Below are some basic HTML elements that are commonly used when creating websites.

Headings

HTML provides different heading sizes from h1 to h6. Headings help organize the content of a webpage.

Paragraph

The paragraph tag (p) is used to display blocks of text on a webpage. It helps organize information clearly.

Links

Links allow users to navigate between different pages. They are created using the anchor tag (a).

Images

Images can be displayed on a webpage using the image tag (img). They make websites more visually appealing.

Lists

Example of an unordered list:

Example of an ordered list:

  1. Learn HTML
  2. Learn CSS
  3. Learn JavaScript