Learn to Code

Free tutorials, examples and references.

No sign-up needed, just start learning.

Or sign up to unlock premium features:

Already a member? 

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>

CSS

The language for styling web pages

CSS Example

body {
  background-color: lightblue;
}

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

{
  font-family: verdana;
}


</html>

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>

</html>

Python

A popular programming language

Python Example

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

</html>

SQL

A language for accessing databases

Heading Example

SELECT * FROM Customers
WHERE Country=‘Mexico’;

</html>

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 faster and better responsive web pages

Log in

Create an account to track your progress, get your own website,
and get access to more features and learning materials:

Code Editor

With our online code editor, you can edit code and view the result in your browser

W3Schools Spaces

If you want to create your own website, check out W3Schools Spaces.

No installation required – just open your browser and start coding:

w3scl-spaces-gif

Become a Plus User

And unlock powerful features:

For Teachers

Streamline your teaching:

Color Picker

W3Schools’ famous color picker:

Code Game

Help the Lynx collect pine cones!

Exercises and Quizzes

Tests our skills!

Web Templates

Browse our selection of free responsive HTML Templates

web-templates-pic

Kickstart your career

Get certified by completing a course

How To Section

Code snippets for HTML, CSS and JavaScript

For example, how to create a slideshow:

www.w3schools.com/howto/