HTML

Learn HTML

Example

<DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a H1 heading.</h1>
<p>This is a paragraph.</p>
</body>
</html>

Example

body {
background-color:blue;
}

h2 {
color:yellow;
font-size:20px;
}

CSS

Learn CSS

JAVA

Learn JAVA

Example

public class MyClass {
 public static void main(String[] args) {
  System.out.println("Hello World");
 }
}

Example

alert("alert in Javascript")

Javascript

Learn Javascript

PHP

Learn PHP

Example

<?php 
echo "My first PHP Script";
?> 

Example

print("Hello World in Python")

Python

Learn Python