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

Python Example:

print("Python, Tutorial")
Execute

Java

Java Example:

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

Mysql

Mysql Example:

SELECT FirstName, Town, City FROM Students;
Execute