Skip to main content
</>
LearnHTML.net
Menu
Learn
Paths
Reference
Examples
AI Prompts
Prompt Builder
Tools
Learn
Paths
Reference
Examples
AI Prompts
Prompt Builder
Tools
Search
Local generator
HTML starter generator
Add only landmarks and content justified by the page.
Page title
Canonical URL
Page description
A concise, factual description of the page.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Example site</title> <meta name="description" content="A concise, factual description of the page." /> <link rel="canonical" href="https://example.com/" /> </head> <body> <header><nav aria-label="Primary"></nav></header> <main><h1>Example site</h1></main> <footer></footer> </body> </html>
Copy code