This website uses Cookies and LocalStorage

HTML Template

The most basic HTML template/boilerplate for copy-pasting with proper mobile meta tags included. For everyone who doesn't remember how to kick-off their HTML. ;)

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1"
    />
    <title>Template</title>
  </head>
  <body>
      <div id="app"></div>
  </body>
</html>