Example of HTML headings tag - HTML CSS HTML

HTML CSS examples for HTML:H1-H6 Headings

Description

Example of HTML headings tag

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of HTML headings tag</title> 
 </head> <!-- w w  w.  ja  va  2 s  .c o  m-->
 <body> 
  <h1>Heading level 1</h1> 
  <h2>Heading level 2</h2> 
  <h3>Heading level 3</h3> 
  <h4>Heading level 4</h4> 
  <h5>Heading level 5</h5> 
  <h6>Heading level 6</h6>   
 </body>
</html>

Related Tutorials