This is a simple sample paragraph within the body of the HTML document.
<!DOCTYPE html>: Declares the document type and version (HTML5).<html>: The root element of the page.<head>: Contains meta-information about the document, like the title and character set.<meta charset="UTF-8">: Specifies the character encoding for the document.<meta name="viewport">: Ensures proper rendering and touch zooming on mobile devices.<title>: Sets the title of the page, which appears in the browser's title bar or tab.<body>: Contains all the visible content of the webpage, such as headings, paragraphs, images, and links.<h1> and <h2>: Define HTML headings, with <h1> being the most important.<p>: Defines a paragraph.