Logo

CODE LEARNER

HTML

The language for building web pages

Learn HTML
Video Tutorial
HTML Reference
Get Certified

HTML Example:

<!DOCTYPE html>
<html>
<head>
<title>HTML Tutorial</title>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Try it Yourself

CSS

The language for styling web pages

Learn CSS
CSS Reference
Get Certified

CSS Example:

body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
}
Try it Yourself

JavaScript

The language for programming web pages

Learn JavaScript
JavaScript Reference
Get Certified

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

C

C is a powerful general-purpose programming language developed in the early 1970s.
It is widely used for system software, operating systems, embedded systems, and more.

Learn C
C Reference
Get Certified

C Example:

C++

C++ was developed as an extension of C, adding object-oriented features while retaining efficiency.
It’s widely used in system programming, game development, and high-performance applications.

Learn C++
C++ Reference
Get Certified

JAVA

Java is a high-level, object-oriented programming language.
It’s platform-independent, thanks to the JVM, and widely used in enterprise applications and mobile development.

Learn JAVA
JAVA Reference
Get Certified

Python

A popular programming language

Learn Python
Python Reference
Get Certified

Python Example:

if 5 > 2:
  print("Five is greater than two!")
Try it Yourself

SQL

A language for accessing databases

Learn SQL
SQL Reference
Get Certified

SQL Example:

SELECT * FROM Customers
WHERE Country='Mexico';
Try it Yourself