This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

Common JavaScript Mistakes

Breaking a statement in the middle of a string will not work:

document.getElementById("demo").innerHTML = "Hello 
World!";

According to NetBeans IDE 19, document.getElementById("demo").innerHTML = "Hello has an error - missing closing quote ("). This prevents "Hello World!" displaying.