Headers

This is heading 1

This is heading 2

This is heading 3

This is heading 4

This is heading 5
This is heading 6
Headers HTML:

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>





Navigation CSS (Static Colors):
Headers do not need any CSS to work, but ofcourse we can style them like a defautl text element.

h1 {   /*You can change h1 into h1 to h6 to address the different headers*/
   background-color#064789;  /*Add this to give the text a background color*/
   margin-left5px;  /*Give the text an margin of 5 pixels on the left side*/
   color#000000;  /*Give the text an color (default black)*/
}