HTML Tags: Block Elements

There are 28 block elements to write HTML documents. Block elements are by default stacked on top of each other, whereas inline elements are used inside block elements and displayed along the same line.

  1. to display contact information
  2. to wrap independent content
  3. to quote another source
  4. to draw graphics (prefer the image tag to display illustrations)
  5. to group other tags (also known as generic block)
  6. to group form elements together
  7. to display a caption corresponding to a figure
  8. to tie an illustration to a caption
  9. to display a footer, generally at the end of a section
  10. to add a form
  11. -

    to display titles and subtitles (headings) ; the bigger the digit, the more important the title 
  12. to display a header, generally at the beginning of a section

  13. to separate content with a horizontal rule
  14. to display a list item
  15. to highlight the main part of a HTML document
    1. to create an ordered list (e.g numbered list)
    2. to write a paragraph (default text)

    3.  to preserve spaces and line breaks from a preformatted text (useful to display computer code) 
      
      
    4. to organize content into sections
    5. to display a table
    6. to add a footer to a table
    7. to add a header to a table
    8. to wrap table data
      • to display unordered list (e.g bulleted list)
      • Block elements are important to organize HTML documents in a way the browser can easily understand and interpret. A good understanding of these tags allows you to improve your website’s search engine optimization (SEO) and become easier to discover on the Internet.