diff options
Diffstat (limited to 'docs/_includes/css/overview.html')
| -rw-r--r-- | docs/_includes/css/overview.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/_includes/css/overview.html b/docs/_includes/css/overview.html index 86a5b45b0..bd0e53848 100644 --- a/docs/_includes/css/overview.html +++ b/docs/_includes/css/overview.html @@ -3,7 +3,7 @@ <p class="lead">Get the lowdown on the key pieces of Bootstrap's infrastructure, including our approach to better, faster, stronger web development.</p> - <h3 id="overview-doctype">HTML5 doctype</h3> + <h2 id="overview-doctype">HTML5 doctype</h2> <p>Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.</p> {% highlight html %} <!DOCTYPE html> @@ -12,7 +12,7 @@ </html> {% endhighlight %} - <h3 id="overview-mobile">Mobile first</h3> + <h2 id="overview-mobile">Mobile first</h2> <p>With Bootstrap 2, we added optional mobile friendly styles for key aspects of the framework. With Bootstrap 3, we've rewritten the project to be mobile friendly from the start. Instead of adding on optional mobile styles, they're baked right into the core. In fact, <strong>Bootstrap is mobile first</strong>. Mobile first styles can be found throughout the entire library instead of in separate files.</p> <p>To ensure proper rendering and touch zooming, <strong>add the viewport meta tag</strong> to your <code><head></code>.</p> {% highlight html %} @@ -23,7 +23,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> {% endhighlight %} - <h3 id="overview-type-links">Typography and links</h3> + <h2 id="overview-type-links">Typography and links</h2> <p>Bootstrap sets basic global display, typography, and link styles. Specifically, we:</p> <ul> <li>Set <code>background-color: #fff;</code> on the <code>body</code></li> @@ -32,10 +32,10 @@ </ul> <p>These styles can be found within <code>scaffolding.less</code>.</p> - <h3 id="overview-normalize">Normalize.css</h3> + <h2 id="overview-normalize">Normalize.css</h2> <p>For improved cross-browser rendering, we use <a href="http://necolas.github.io/normalize.css/" target="_blank">Normalize.css</a>, a project by <a href="https://twitter.com/necolas" target="_blank">Nicolas Gallagher</a> and <a href="https://twitter.com/jon_neal" target="_blank">Jonathan Neal</a>.</p> - <h3 id="overview-container">Containers</h3> + <h2 id="overview-container">Containers</h2> <p>Bootstrap requires a containing element to wrap site contents and house our grid system. You may choose one of two containers to use in your projects. Note that, due to <code>padding</code> and more, neither container is nestable.</p> <p>Use <code>.container</code> for a responsive fixed width container.</p> {% highlight html %} |
