Learn How To Code

With the finest and advanced code examples & Tutorial's

<h1>Hello Developer.</h1>

HTML

Hypertext Markup Language for creating web pages.

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

Python

Learn Python from ground zero to AI. Our interactive tutorials guide you through core concepts like variables, Lists, Dict, conditions, and loops to data science and Artificial Intelligence.

Python Example:

print("Python, Tutorial")
Execute

Java

In Java, we have covered everything from the fundamental building blocks of Java syntax to advanced topics like object-oriented programming and file handling. Learn about variables, data types, operators, and control flow statements to construct well-structured Java programs.

Java Example:

public class Main {
public static void main(String[] args) {
System.out.println("This is my first Java File");
}
}
Execute

Mysql Example:

SELECT FirstName, Town, City FROM Students;
Execute