Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 743 Bytes

File metadata and controls

24 lines (19 loc) · 743 Bytes

✅ HTML Website Checklist

↖️ Return to the main file

<head>

  • Add a <title> tag with a clear page title
  • Include meta tags
    • <meta charset="UTF-8">
    • <meta name="viewport" content="width=device-width, initial-scale=1.0">
    • Description
    • Author
    • Keywords
  • Styles file (styles.css): use <link href="..." rel="stylesheet">
  • Link external font or use Google Fonts: use <link href="..." rel="stylesheet">

<body>

  • Add a main <h1> heading
  • Create the main content structure (divs, sections, etc.)
  • Add a <footer> with:
    • License or copyright
    • "Made with ❤️" or similar personal touch
  • Script file (script.js)