Learn to Code

With the world's largest web developer site.

Not Sure Where To Begin?

HTML

The language for building web pages

HTML Example:

<!DOCTYPE html> <html> <title>HTML Tutorial</title> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html> Linkedln:Mohammad Amin Banam Instagram:Amin.banam.web tel:09120281674

Try it Yourself

CSS

The language for styling web pages

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

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> Linkedln:Mohammad Amin Banam Instagram:Amin.banam.web tel:09120281674

Try it Yourself

Python

A popular programming language

Python Example:

if 5 > 2: print("Five is greater than two!") Linkedln:Mohammad Amin Banam Instagram:Amin.banam.web tel:09120281674

Try it Yourself

SQL

A language for accessing databases

SQL Example:

SELECT * FROM Customers WHERE Country='Mexico';

Try it Yourself

PHP

A web server programming language

jQuery

A JS library for developing web pages

Java

A programming language

C++

A programming language

W3.CSS

A CSS framework for faster and better responsive web pages

Bootstrap

A CSS framework for designing better web pages