Used to link external resourses (like stylesheets). Typically, CSS and JavaScript things live in external files and the link elements is what connects them with the HTML file.
Example: <link rel="stylesheet" href="./styles.css />
./ tell computer to look in the current folder for styles.css*Link Element should be placed in the <head>.
Free & open source, provides you with the HTML (how neat!)
Foundation for the house!
EXAMPLE:

<!DOCTYPE html> is the declaration! Also, <!DOCTYPE html> = HTML5
<!DOCTYPE html> and the last </html><head><body><h1>, <h2>, <p>Drafting a boilerplate is like drafting a letter. There is a certain format.
“UCS Transformation Format”
VERY important meta element that lives in the <head> section.
UTF-8 is universal, supports every character in the Unicode character set, and includes characters and symbols from all languages.
Include UTF-8 in every boilerplate you create - like this:
<meta charset="UTF-8" />
charset is the “attribute”
Character Encoding = A method computers use to store characters as data.
In computing, 1 byte = 8 bits