Skip to main content

HTML Starter Template

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Title</title>
<meta name="description" content="Short summary of the page" />
<link rel="icon" href="/favicon.ico" />
</head>
<body>
<a href="#main-content">Skip to content</a>
<header><h1>Project Title</h1></header>
<main id="main-content"><p>Primary content.</p></main>
<footer><p>&copy; 2026 Your Project</p></footer>
</body>
</html>

Gold-Standard Defaults

  • doctype present
  • language declared
  • mobile viewport set
  • skip link included
  • main landmark present

What's Next