<h2>Important globals</h2> <p>Bootstrap employs a handful of important global styles and settings that you’ll need to be aware of when using it, all of which are almost exclusively geared towards the <em>normalization</em> of cross browser styles. Let’s dive in.</p> <h3>HTML5 doctype</h3> <p>Bootstrap requires the use of the HTML5 doctype. Without it, you’ll see some funky incomplete styling, but including it shouldn’t cause any considerable hiccups.</p> <div class="bd-clipboard" style="box-sizing: border-box; position: relative; float: right; color: rgb(33, 37, 41); font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; font-size: 16px;">Copy</div> <pre> <code><span style="color:rgb(0, 153, 153)"><!doctype html></span> <span style="color:rgb(47, 111, 159)"><html</span> <span style="color:rgb(79, 159, 207)">lang=</span><span style="color:rgb(212, 73, 80)">"en"</span><span style="color:rgb(47, 111, 159)">></span> ... <span style="color:rgb(47, 111, 159)"></html></span></code></pre> <h3>Responsive meta tag</h3> <p>Bootstrap is developed <em>mobile first</em>, a strategy in which we optimize code for mobile devices first and then scale up components as necessary using CSS media queries. To ensure proper rendering and touch zooming for all devices, add the responsive viewport meta tag to your </p>