HTML Headings
- Headings in HTML are defined with h1 to h6 tags.
- h1 tag defines the most important heading on the web page and the h6 tag defines the least important heading on the web page.
- All headings in HTML have pre-defined sizes.
When we define heading h1 to h6 a style of that heading will automatically be inserted. We can check the style of that particular heading by inspecting elements.
However, you can change the default size and style of the heading using CSS.
The Search Engine uses headings for indexing the content and structure of a web page. Headings are also used to determine how much the topic is important.
Below is the syntax to write HTML headings.

Output
This is the heading with h1
This is the heading with h2
This is the heading with h3
This is the heading with h4
This is the heading with h5
This is the heading with h6
Recommended

How To Get Month From Date in SQL Server
In this article, "How to get month from date in SQL Server" we will learn how we can get month from date provided as input parameter as string or table column.

How To Get Day From Date in SQL Server
In this article, "How to get day from date in SQL Server" we will learn how we can get day from date provided as input parameter from string and table column.

Advanced SQL Queries For Practice With Solution
In "Advanced SQL Queries For Practice With Solution", we learn queries with correlated, non-correlated, Joins, stored procedures, functions, etc.

SQL Queries For Practice With Solution
In this article "SQL Queries For Practice With Solution", we will learn how to write SQL Queries from basic level to advance level with practical examples.

How To Use ROW_NUMBER Function in SQL
In this article How To Use ROW_NUMBER Function in SQL, we will learn how to generate row numbers for every new record in the select list using ROW_NUMBER().

Date and Time Functions in SQL Server
Date and Time Functions in SQL Server we will look current_timestamp, dateadd(), datediff(), datename(), datepart(), day(), getdate(), month(), year() etc.

How To Find Nth Highest Salary in SQL Server
In this article, we will learn how to find the Nth highest salary of an employee with some practical examples in SQL Server.

STORED PROCEDURE in SQL Server
In this article, Stored Procedure in SQL Server we will learn how to create a stored procedure without parameters and with single or multiple parameters.

How To Join Tables Data in SQL Server
In this article, Joins(Inner, Outer, Cross) in SQL Server we will learn what are Joins and types of joins like inner, outer, and cross join with examples.