Note:
This notebook will constantly be updated!
Check back often!
NO AI WERE USED OR HARMED IN THIS PROJECT!
This link leads to a page that explains what a element is and has a list of commonly used tags and descriptions.
Guide to Headings
Website Structure Breakdown of a website's basic HTML structure.
A Div is a content division element it allows you to divide content into seperate "boxes" which makes it easier for coder to interact with.
To get a better understanding of the order of parents and children take a look at the red box labeled programmer.
The red box is the div. It appears "last" on screen.
Next to be seen or "appear on screen" would be the blue h1 because it sits on its parent, the red div.
Finally the yellow span sits on top of its parent the blue h1.
To summarize when coding the user will see your coding like this: Yellow first then blue finally red.
The asterisk (*) aka universal selector for CSS, matches all elements in a document, allowing you to apply styles universally.
It can be useful for resetting styles or applying a default style across all elements, but should be used carefully to avoid performance issues.