Blank Canvas

Use these codeblocks to start coding new files.

HTML Template

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="theme-color" content="#f5f5f5">
        <meta name="robots" content="noindex, nofollow">
        <meta name="description" content="Page description">
        <title>New Webpage</title>
        <link rel="canonical" href="{{URL to this page}}">
        <link href="https://bits.birdbrainweb.ca/cssreset/" rel="stylesheet" type="text/css">
        <link href="style.css" rel="stylesheet" type="text/css">
    </head>
    <body></body>
</html>

Web App Manifest Template

{
  "name": "New Web App Manifest",
  "short_name": "Manifest",
  "default_locale": "en",
  "description": "This is a new web app manifest file.",
  "background_color": "#f5f5f5",
  "theme_color": "#f5f5f5",
  "icons": [
    {
      "src": "logo.png",
      "sizes": "800x800",
      "type": "image/png"
    }
  ],
  "start_url": "/",
  "display": "standalone",
  "orientation": "portrait"
}