Tags examples
🌐 HTML Tags Cheat Sheet (Interactive) Click the Example button to expand a preview + dark code block. Use Copy to copy code. This variant includes examples for the most useful tags only. 1. Document Structure & Metadata Tag Description Example <!DOCTYPE> Defines the document type ▶ Example Standard HTML5 doctype declaration Copy <!DOCTYPE html> ``` <html> Defines the root of an HTML document ▶ Example Root element with language attribute Copy <html lang="en">\n <head>...</head>\n <body>...</body>\n</html> <head> Contains metadata/information ▶ Example Head with meta and title Copy <head>\n <meta charset="utf-8">\n <meta name="viewport" content="width=device-width, initial-scale=1">\n <title>Page Title</tit...