This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
let text; switch (new Date().getDay()) { case 4: case 5: text = "It will soon be the Weekend"; break; case 0: case 6: text = "It is the Weekend"; break; default: text = "I am looking forward to the Weekend"; } document.getElementById("demo").innerHTML = text;