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>

CSS

The language for styling web pages

CSS Example:

body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; }

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>

Python

A popular programming language

Python Example:

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

SQL

A language for accessing databases

SQL Example:

SELECT * FROM Customers WHERE Country='Mexico';
PHP
jQuery
Java
C++
W3.CSS
Bootstrap
C
C#
React
Node.js
Kotlin
TypeScript
Opening Editor...