Developer Roadmap
/Basic Tags
TopicStep 33 filesOpen folder on GitHub

Basic Tags

demo.html
View on GitHub
demo.html
View on GitHub
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="Demo of basic HTML document structure">

  <title>HTML Structure Demo</title>
</head>

<body>
  <h1>HTML Document Structure</h1>

  <p>This page demonstrates basic structural tags in HTML:</p>

  <ul>
    <li><strong>&lt;!DOCTYPE html&gt;</strong> – tells browser to use HTML5 mode</li>
    <li><strong>&lt;html&gt;</strong> – root element that wraps the whole page</li>
    <li><strong>&lt;head&gt;</strong> – metadata: title, charset, styles, scripts</li>
    <li><strong>&lt;meta&gt;</strong> – provides information about the document</li>
    <li><strong>&lt;body&gt;</strong> – everything visible on the screen</li>
  </ul>

  <p>All HTML pages follow this basic structure.</p>
</body>

</html>