diff --git a/getting-started.html b/getting-started.html index 4080408568e4..b098f4feedd3 100644 --- a/getting-started.html +++ b/getting-started.html @@ -733,8 +733,9 @@

Skip navigation

{% endhighlight %}

Nested headers

-

Another "gotcha" has to do with how you nest your <header> elements. Section 508 states that your largest header must be an h1, and the next header must be an <h2>, etc. This is hard to achieve in practice, but if the largest header on your site is smaller than Bootstrap's default 38px, you should consider modifying your stylesheets before using a smaller header element.

- +

Another "gotcha" has to do with how you nest your header elements (the H1, H2, H3...H6 tags). Section 508 states that your largest header must be an <h1> followed by an other <h1> or a subordinate heading element (h2 to h6). The structure of the headers should reflex the structure of your document. So the heading structure should be logically nested. Screen readers read this semantic heading structure to construct a table of contents. Screen readers don't use any formatted style. Visual readers use the formatted style in stead of the semantic structure. See also: http://accessibility.psu.edu/headings.

+

The hierachical default font size of Bootstrap's header elements helps you to make the semantic stucture consistent with the visual (formatted) style. Consider this when you change any default font size of Bootstrap by modifying your stylesheets.

+

Additional resources