Parent and Child | Basic Rules for .css
To link a .css from the .html, add the script into the <header> bock.
<link rel="stylesheet" href="./junk1.css">
Include your own file source location (href=)
Starting the .css script with no dot "." will call out to the main tag that it refers to in the html.
p {
color: blue;
}