HTML

The language for building web pages

Learn Html Video Tutorial Html references

HTML Example:

<!DOCTYPE html>

<html>

<title> HTML Tutorial </title>

<body>

<h1> This is Heading. </h1>

<p> This is paragraph. </p>

</body>

</html>

Try it yourself

CSS

The language for styling web pages

Learn CSS CSS Reference

CSS Example:

body {

background-color : lightgreen ;

}

h1 {

color : green ;

font-weight : bold ;

}

Try it yourself

Javascript

The language for programming web pages

Learn javascript javascript Reference

Javascript Example:

<button onclick="myFunction()">Click Me!</button>


<script>

function myFunction() {

let x = document.getElementById("demo");

x.style.fontSize = "25px";

x.style.color = "red";

}

</script>

Try it yourself

PYTHON

A popular programming language

Learn Python Python references

Python Example:

if 5 > 2 :

print("Five is greater than two!")

Try it yourself

SQL

The language for programming web pages

Learn SQL SQL Reference

SQL Example:

SELECT * FROM Customers

WHERE Country= 'Mexico';

Try it yourself

Web Templates

Browse our selection of free responsive HTML Templates

BROWSE TEMPLATES