Basic page template

Tags
Summary

A template for a basic page.

Situation

You want to make a simple HTML page.

Action

Here's the code to copy-and-paste. It has two slots. Replace them with your own stuff.

  • <!doctype html>
  • <html lang="en">
  •     <head>
  •         <title> Slot 1: text for the browser tab </title>
  •         <meta charset="utf-8">
  •         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  •     </head>
  •     <body>
  •         Slot 2: page content
  •     </body>
  • </html>
Where referenced