Oracle APEX 23 Course For Beginners

Oracle APEX 23 Course For Beginners
Oracle APEX 23 Course For Beginners

Thursday 28 July 2022

3 - Why Headings Are Used In HTML

Headings in HTML 

Headings and subheadings in a document are used to present information in a hierarchical format. For instance, a document usually starts with a big heading before the main introduction of a topic, followed by relevant subheadings.


You can use <h1> to <h6> tags to define headings in your website where <h1> defines the most important heading while <h6> defines the least important one. Headings are displayed in different sizes by the browser. The content enclosed in <h1> is the largest, and that in <h6> is the smallest. You will learn how to set the size of content, its color, and font in the second part of this book where you'll be taught about Cascading Style Sheets (CSS).


Usage Recommendations

Here are some tips on how to properly utilize these tags to improve your page structure for search engine ranking purposes.

  • Don't use headings to make text bold. 
  • Header tag (h1, h2, h3 etc.) gives a specified amount of importance to the surrounding text on a page. So you can have as many h1 tags as necessary as long as you have the same amount of important sections on your page.
  • Usually one h1 tag is enough for the search engine to see what the page is about.
  • Multiple h1 tags on a website can trigger a penalty if you have other spamming techniques on your page.


Learn the HTML5 language in this tutorial series. These tutorials are designed for new programmers to provide them thorough knowledge of full stack web development.

Watch Full Playlist Here

Watch Complete One Video Here


#h4 tag #h1 tag #h5 tag #h6 tag #heading tags #html heading tag #html headings #heading in html #h3 tag #h2 tag #html heading tags #heading tags in html #html heading


Display Data Dynamically In A Gauge Chart

In this tutorial, we will learn how to display customer's ordered data in a gauge chart dynamically. As you choose a customer name from ...