<!DOCTYPE html>Note that write() does NOT add a new line after each statement:document.write("Hello World!");document.write("Have a nice day!");Note that writeln() add a new line after each statement:document.writeln("Hello World!");document.writeln("Have a nice day!");