+ 8
CSS:
.blue {
color: blue;
}
JavaScript:
var x = document.getElementsByTagName("p");
x.addEventListener("click", clicked);
function clicked() {
x.classList.toggle("blue");
}
When you clicked on something inside a paragraph tag is gives it or removes the class "blue" depending if it already has it.