HTML TUTORIALS-
HTML Headings-
Introduction-
HTML Headings Tutorial-
-Headings are like titles and subtitles on a webpage. They help break up the content so it's easier to read and understand. They also help Google and other search engines know what your page is about. In HTML (the code used to build websites), there are six types of headings, from big ones Heading tags range from the largest <h1> to small ones <h6> .....
-)What Are HTML Headings?
-)HTML headings are used to define the titles and subtitles on a webpage. They provide a clear structure and hierarchy to the content. Each heading tag has a specific meaning:-
🔹- <h1>:- Main heading (used once per page)
🔹- <h2>:- Subheading under <h1>
🔹- <h3>:- Subheading under <h2> and .....
🔹- <h6>:- The smallest and least significant heading
<h1>This is a Heading 1 </h1>
<h2>This is a Heading 2 </h1>
<h3>This is a Heading 3 </h1>
<h4>This is a Heading 4 </h1>
<h5>This is a Heading 5 </h1>
<h6>This is a Heading 6 </h1>
<!DOCTYPE html>
<html>
<head>
<title>HTML Headings Example</title>
</head>
<body>
<h1>www.Learntosap.com</h1>
<h2>About Us page</h2>
<h3>Our Mission</h3>
<h4>Team Members</h4>
<h5>Contact Info</h5>
<h6>Legal Notice</h6>
</body>
</html>
-Cretae New Customer Account Group