Basic Tags
demo.html
demo.html
<!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><!DOCTYPE html></strong> – tells browser to use HTML5 mode</li>
<li><strong><html></strong> – root element that wraps the whole page</li>
<li><strong><head></strong> – metadata: title, charset, styles, scripts</li>
<li><strong><meta></strong> – provides information about the document</li>
<li><strong><body></strong> – everything visible on the screen</li>
</ul>
<p>All HTML pages follow this basic structure.</p>
</body>
</html>
demo.html
demo.html
<!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><!DOCTYPE html></strong> – tells browser to use HTML5 mode</li>
<li><strong><html></strong> – root element that wraps the whole page</li>
<li><strong><head></strong> – metadata: title, charset, styles, scripts</li>
<li><strong><meta></strong> – provides information about the document</li>
<li><strong><body></strong> – everything visible on the screen</li>
</ul>
<p>All HTML pages follow this basic structure.</p>
</body>
</html>