scrimba
Note at 0:26
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 0:26
AboutCommentsNotes
Note at 0:26
Expand for more info
index.js
run
preview
console
// const greeting = document.getElementById("greeting")
// const btn = document.getElementById("btn")

document.getElementById("btn").addEventListener("click", fix);

function fix() {
const greeting = document.getElementById("greeting");
greeting.innerText = "🎄Merry Christmas!🎄"
greeting.style.fontFamily = "Mountains of Christmas";
}

//Stretch goals:
// - Add an extra theme, and the option to switch between them.
// - Change the message and theme to a New Year’s one automatically on December 31st.







Console
/index.html
LIVE