diff --git a/docs/getting-started.html b/docs/getting-started.html index ea944baf57..51eab28415 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -199,30 +199,30 @@

With a brief intro into the contents out of the way, we can focus putting Bootstrap to use. To do that, we'll utilize a basic HTML template that includes everything we mentioned in the File structure.

Now, here's a look at a typical HTML file:

-
-    <html>
-      <head>
-        <title>Bootstrap 101 Template</title>
-      </head>
-      <body>
-        <h1>Hello, world!</h1>
-      </body>
-    </html>
-    
+
+<html>
+  <head>
+    <title>Bootstrap 101 Template</title>
+  </head>
+  <body>
+    <h1>Hello, world!</h1>
+  </body>
+</html>
+

To make this a Bootstrapped template, just include the appropriate CSS and JS files:

-
-    <html>
-      <head>
-        <title>Bootstrap 101 Template</title>
-        <!-- Bootstrap -->
-        <link href="css/bootstrap.min.css" rel="stylesheet">
-        <script src="js/bootstrap.min.js"></script>
-      </head>
-      <body>
-        <h1>Hello, world!</h1>
-      </body>
-    </html>
-    
+
+<html>
+  <head>
+    <title>Bootstrap 101 Template</title>
+    <!-- Bootstrap -->
+    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <script src="js/bootstrap.min.js"></script>
+  </head>
+  <body>
+    <h1>Hello, world!</h1>
+  </body>
+</html>
+

And you're set! With those two files added, you can begin to develop any site or application with Bootstrap.


diff --git a/docs/templates/pages/getting-started.mustache b/docs/templates/pages/getting-started.mustache index 96b20f7ce2..ed203281ae 100644 --- a/docs/templates/pages/getting-started.mustache +++ b/docs/templates/pages/getting-started.mustache @@ -128,30 +128,30 @@

{{_i}}With a brief intro into the contents out of the way, we can focus putting Bootstrap to use. To do that, we'll utilize a basic HTML template that includes everything we mentioned in the File structure.{{/i}}

{{_i}}Now, here's a look at a typical HTML file:{{/i}}

-
-    <html>
-      <head>
-        <title>Bootstrap 101 Template</title>
-      </head>
-      <body>
-        <h1>Hello, world!</h1>
-      </body>
-    </html>
-    
+
+<html>
+  <head>
+    <title>Bootstrap 101 Template</title>
+  </head>
+  <body>
+    <h1>Hello, world!</h1>
+  </body>
+</html>
+

{{_i}}To make this a Bootstrapped template, just include the appropriate CSS and JS files:{{/i}}

-
-    <html>
-      <head>
-        <title>Bootstrap 101 Template</title>
-        <!-- Bootstrap -->
-        <link href="css/bootstrap.min.css" rel="stylesheet">
-        <script src="js/bootstrap.min.js"></script>
-      </head>
-      <body>
-        <h1>Hello, world!</h1>
-      </body>
-    </html>
-    
+
+<html>
+  <head>
+    <title>Bootstrap 101 Template</title>
+    <!-- Bootstrap -->
+    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <script src="js/bootstrap.min.js"></script>
+  </head>
+  <body>
+    <h1>Hello, world!</h1>
+  </body>
+</html>
+

{{_i}}And you're set! With those two files added, you can begin to develop any site or application with Bootstrap.{{/i}}