Beginning JavaScript; CSS Basics
What I’ve learned today while doing CSS with freeCodeCamp, is how to prioritize the importance of how certain lines of code should either be “! important” or it should serve as the alternative in the
h2 { font-family: Lobster, monospace;}.
In that example, if the Lobster font is not available it would default to the monospace font. This would be quite useful if and when we want to have a more dynamic site where it can change between fonts/colors/sizes however, I'm sure with Javascript, we would be able to do that rather than to rely on a default option.