Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@abhishekjakhar
Created October 14, 2018 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhishekjakhar/1cc733aa557da2177167158fe09d9cc4 to your computer and use it in GitHub Desktop.
Save abhishekjakhar/1cc733aa557da2177167158fe09d9cc4 to your computer and use it in GitHub Desktop.
Headings in HTML
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment