Elements

HTML elements are components of an HTML document that describe the structure and content of a page. They are the basic building blocks used to create webpages and structure HTML documents.
They consist of many different elements that make the overall structure of your webpage.

See HTML table for example elements!

HTML Table

Element/Symbol Name Description
<html> </html> Represents the root of an HTML document.
<body> </body> Defines the document's body.
<p> </p> Defines a paragraph.
<header> </header> Represents a container for introductory content or a set of navigational links.
<img> Displays pictures on your page.

Fonts!

Fonts are an essential part of your page, you want to make sure it looks good!
There are thousands to choose from to add additonal asthetics to your page.
You typically would use css to style this but you can also do it in the html as well.

Font Table & Miscellaneous Stuff

Symbol/Syntax Description Examples
font-family:Arial; This is the selector used to choose your font to arial. Remember to end each css style with a semicolon ';'.
<style> This tag is used to syle elements from within the html document <p style= "color:blue;">< p>
lorem ipsum This is just filler text, cause i'm lazy Used as an example language.