Last active
February 4, 2020 21:46
-
-
Save joao/3d01d394c3e42e71c824da9af513bc1d to your computer and use it in GitHub Desktop.
RR test
This file contains hidden or 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
<style type="text/css"> | |
h1 { | |
font-family: sans-serif; | |
color: pink; | |
cursor: pointer; | |
font-size: 36px; | |
} | |
h1.blue { | |
color: blue; | |
} | |
</style> | |
<body> | |
<h1> Maria João</h1> | |
<script> | |
heading = document.getElementByTagName('h1')[0] | |
heading.addEventListener("click", changeColor); | |
function changeColor() { | |
heading.classList.toggle('blue'); | |
} | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment