Quickstart

First Steps

  • Create an HTML document whose body includes a header tag, a footer tag and a main tag.
  • Download printstrap.css and include it as CSS in your HTML document.
  • Open your HTML document in your browser.
  • Add some content, following the guidelines.

Minimal HTML Sample

<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="printstrap.css">
  </head>
  <body>
    <header></header>
    <footer></footer>
    <main>
      <h1>Document</h1>
    </main>
  </body>
</html>