Learn to Code

With the World's largest web developer site.

Not Sure Where To Begin?

HTML

The language for building web pages

Learn HTML Video Tutorials HTML Reference Get Certified

HTML Example

   <!DOCTYPE  html>
   <html>
   <title> HTML Tutorial  </title>
   <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

JS

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

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 database

Learn SQL SQL Reference Get Certified

SQL Example

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

PHP

A Web server programming language

Learn PHP

jQuery

A JS library for developing web pages

Learn jQuery

Java

A programming language

Learn Java

C++

A programming language

Learn C++

W3.CSS

A CSS framework for responsive web pages

Learn W3.CSS

Bootstrap

A CSS framework for responsive web pages

Learn Bootstrap
C C#

Code Editor

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

Try Frontend Editor (HTML/CSS/JS) Try Backend Editor (Python/PHP/Java/C..)

W3Schools Spaces

Build your own website with W3Schools Spaces.


Get Started for Free

My Learning

Track your progress with the free "My Learning" program here at W3Schools.


Log in to your account, and start earning points!


Sign up for Free

Become a PRO User


And unlock powerful features:

Browse W3Schools without ads

Website hoisting (Includes Spaces PRO

Access to our HTML Video Tutorial

Learn More

Color Picker

W3Schools'famous color picker:

Code Game

Help the Lynx collect pine cones!


Play Game

Excercises and Quizzes

Test your skills!

Web Templates

Browse our selection of free responsive HTML Templates


Browse Templates

Kickstart your career

Get certified by completing a course

Get started

How To Section

Code snippets for HTML,CSS and JavaScript

For example,how to create a slideshow:

Learn How To