1) Understanding HTML Syntax:
1) HTML uses a markup-based syntax consisting of tags, which are enclosed
in angle brackets "(< >)".
2) Every HTML document starts with the "< !DOCTYPE html>" declaration, followed by the element that contains the entire webpage's content.
The basic structure of an HTML document looks like this:
In this example, the "< head >" section contains metadata about the page, such as the title that appears in the browser tab. The "< body >" section contains the visible content of the webpage, including headings "< h1 >" and paragraphs "< p >" .