Linked List

A personal knowledge base

HTML Template

A basic HTML5 template with just enough styling to make it easier to read. Derived from bettermotherfuckingwebsite.com.

# html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>HTML Template</title>
  <style type="text/css">
    body {
      margin:40px auto;
      max-width:650px;
      line-height:1.6;
      font-size:18px;
      color:#444;
      padding:0 10px;
      font-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
    }
    h1,h2,h3{line-height:1.2}
  </style>
</head>
<body>
  <header>
    <h1>Heading</h1>
    <aside>
      Intro
    </aside>
  </header>
  <h2>H2</h2>
  <p><strong>strong</strong> wording</p>
  <ul>
    <li>Item</li>
  </ul>
  <h3>H3</h3>
  <blockquote>
    "Quote"<br>
    - Person Face
  </blockquote>
  <hr>
  <h2>Epilogue</h2>
  <p>Some notes</p>
</body>
</html>
Last modified: 26 February 2019