Topic 1 – Headings and Paragraphs
Headings and Paragraphs are two of the most common text tags used in HTML. The title or heading of the page would have a h1 text tag. H1 tags are generally the largest text on the page. H2 is most commonly used for subheadings. If text is not considered h1-h6, then it belongs in the paragraph tag. Body text is always placed in the paragraph tag.
Topic 2 – An HTML Template
Doctype is the first tag in every HTML document. There are certain tags that don’t need to be closed and Doctype is an example. The html tag falls under the Doctype and includes the head and body tag. The head tag works with the browser to understand the overall structure of each page. Body tags include HTML elements that are responsible for the appearance of each page.
Topic 3 – The Document Object Model
The Document Object Model (DOM) is based on the structure of HTML. There is a hierarchical system in DOM. This system is based on a family tree orientation. Each element correlates to other elements in the DOM hierarchy. For example, the section tag is considered the parent of h1 and p tags, and h1 and p are the children of the section tag.