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>
Try it Yourself
<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;
}
Try it Yourself
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>
Try it Yourself
<script>
function myFunction() {
let x = document.getElementById("demo");
x.style.fontSize = "25px";
x.style.color = "red";
}
</script>
Python
A popular programming language
SQL
A language for accessing databases
C
C#
R
Kotlin
Node.js
React
JSON
AngularJS
MySQL
XML
Sass
Icons
RWD
Graphics
SVG
Canvas
Raspberry Pi
Cyber Security
Colors
Git
Matplotlib
Numpy
Pandas
SciPy
ASP
Accessibility
AppML
Go
TypeScript
Django
Excel
Google Sheets
Machine Learning
Artificial Intelligence
Statistics
Data Science
Code Editor
With our online code editor, you can edit code and view the result in your browser

W3Schools Spaces
Build your own website with W3Schools Spaces.

Color Picker
W3Schools' famous color picker

Code Game
Help the Lynx collect pine cones!

Exercises and Quizzes
Test your skills!
Web Templates
Browse our selection of free responsive HTML Templates

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: