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
;font-size
: 20px
;
JavaScript
The language for programming web pages
JavaScript Example:
<
button
onclick
= "myFunction( )">
Click Me!</button>
<
script
>
function
myFunction() {var
x = document.getElementById("demo"
); x.style.fontSize ="25px"
; x.style.color ="red"
; }<
/script
>
SQL
A language for accessing databases
SQL Example
SELECT
*FROM
CustomersWHERE
Country ='Mexico'
;
Python
A programming language
jQuery
A JavaScript library for developing web pages
Java
A programming language
PHP
A web server programming language
W3.CSS
A modern CSS framework for faster and better responsive web pages
Color Picker

Bootstrap
A CSS framework for designing better web pages
Exercises
Test yourself with exercises
Web Templates
Browse our selection of free responsive html templates

How To Section
Code snippets for HTML, CSS and JavaScript

Web Certificates
Get Certified in HTML,CSS and JavaScript
F O R U M | A B O U T
W3Schools is optimized for learning, testing, and training. Examples might be simplified to improve reading and basic understanding. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using this site, you agree to have read and accepted our terms of use, cookie and privacy policy.Copyright 1999-2020 by Refsnes Data. All Rights Reserved.