-
Notifications
You must be signed in to change notification settings - Fork 0
02. Changing the font
CoconutMacaroon edited this page Nov 12, 2020
·
2 revisions
Let's change the font to Comic Sans!
Tip: Remember, make sure you do this in the right DevTools window. I describe how to open DevTools here
As a proof-of-concept, lets change the font of Teams to Comic Sans. In the JavaScript console run: for(let i = 0; i < document.getElementsByTagName("*").length; i++) {document.getElementsByTagName("*")[i].style.fontFamily="Comic Sans MS"}
. This will change the font to Comic Sans.