Text Elements
Heading There are six tags for headings, <h1> through <h6> with each having a closing tag pair. Heading tags follows a hierarchy in size, where <h1> is the largest and <h6> is the smallest. It is customary for a page to have only one <h1> Paragraph The <p> tag is for creating paragraphs, it has …. Read More
HTML document structure
The basic HTML document structure starts with the doctype html, followed by a html set of tags. Nested in the html tag we will find the head tag and the body tag. The head tag will encapsulate other elements like title. The body tag will contain the elements that make the web page, like the …. Read More