Learn How To Code
With the finest and advanced code examples & Tutorial's
<h1>Hello Developer.</h1>
HTML Example:
<!DOCTYPE html>
<html>
<title>Mr Examples HTML Tutorial </title>
<body>
<h1>This is just a heading </h1>
<p>This is just a paragraph. </p>
</body>
</html>
Execute
<html>
<title>Mr Examples HTML Tutorial </title>
<body>
<h1>This is just a heading </h1>
<p>This is just a paragraph. </p>
</body>
</html>
Python
Java
Java Example:
public class Main {
public static void main(String[] args) {
System.out.println("This is my first Java File");
}
}
Execute
public static void main(String[] args) {
System.out.println("This is my first Java File");
}
}