Top Ads

HTML Use Headings

HTML headings are defined with the <h1> to <h6> tags.
<h1>     ----------  >>>>   defines the most important heading.
   .
   .
   .
<h6>     ----------  >>>>   defines the least important heading.


Example

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

Output


Related Posts:

  • HTML Use Headings HTML headings are defined with the <h1> to <h6> tags.<h1>     ----------  >>>>  … Read More
  • Save and Open the HTML Page Save the file on your computer. Select File > Save as in the Notepad++ menu. Name the file "Simple.html" and  You can use… Read More
  • HTML Use Paragraphs,Links and Images HTML PARAGRAPHS HTML paragraphs are defined with the <p> tag Code <p>This is a paragraph.</p> Output HTML LINKS … Read More
  • Html Use Attribute LANG ATTRIBUTE The language of the document can be declared in the <html> tag. The language is declared with the lang at… Read More
  • Web Browsers The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them. The browser does not display the HTML tags, … Read More