A Pen by Eliot Kent Woodrich on CodePen.
Created
February 2, 2020 03:04
-
-
Save ekwoodrich/88451895b9a9c4b5c6e810728ccd4c3a to your computer and use it in GitHub Desktop.
Event Practice
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Hello <span onClick="console.log('hello world')"> World!</span></h1> | |
<h1 id="yellow">Yellow <span onClick="console.log('hello world')"> Qorld!</span></h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelector("h1#yellow").style.fontSize = "80px"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$blue: #a3d5d3; | |
body { | |
background-color: $blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment