Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 501 Bytes

File metadata and controls

27 lines (22 loc) · 501 Bytes

Exercise 1

  • Create the following folder/file structure:
/ex_1
  |-- index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Getting Started with Bootstrap</title>
  </head>
  <body>
    <h1>Hello world!</h1>
  </body>
</html>

index.html

  • Create a basic HTML document
  • Add the Bootstrap stylesheet <link> into your <head>
  • Add the Bootstrap <script>s near the end of your pages, right before the closing </body> tag, to enable them.