KlokanTech Base HTML

This is the sample for the base HTML5 starter.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
    <meta name="author" content="KlokanTech">
    <meta name="description" content="Klokan Technologies GmbH">
    <link href="http://klokantech.github.io/styles/base.css" rel="stylesheet">
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
    <title>Klokan Technologies GmbH</title>
    <script type="text/javascript" src="/js/index.js"></script>
  </head>
  <body>
   <h1>Klokan Technologies GmbH</h1>
  </body>
</html>

Code style

  • Attribute values should be wrapped in single quotes.
  • Two space, soft tab indentation
  • Paragraphs of text should always be placed in a <p> tag. Never use multiple <br> tags.
  • List items should always be in <ul>, <ol>, or <dl>, Never a set of <div>
  • Every visible form input should use a <label> tag.