Okay if your a starter coder looking to learn something this will help you choose what to learn first.
HTML codes are simple in order to write Hello World in this forums default font you just put this code
<HTML>
<HEAD>
</HEAD>
<BODY>
<FONT>Hello World</FONT>
</BODY>
</HTML>
HTML can get more complicated of course.
JavaScript is a more advanced scripting language. It was made by Netscape is NOT the same as Java so don't get those confused because trying to learn Java as your first coding language will be a disaster!
Writing of Hello World in JavaScript
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Beginning of JavaScript -
function MsgBox (textstring) {
alert (textstring) }
// - End of JavaScript - -->
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT>
<!--
document.write("Hello World")
/--!>
</BODY>
</HTML>
Java
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Display the string.
}
}