THE INDIA LARGEST WEB DEVELOPER SITEdiv>

HTML

The language for building web pages

LEARN HTML HTML REFERENCE

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

CSS Example:

body {
    background-color: #d0e4fe;
}
h1 {
    color: orange;
    text-align: center;
}
p {
    font-family: "Times New Roman";
    font-size: 20px;
}
Try it Yourself

CSS

The language for styling web pages

LEARN CSS CSS REFERENCE

JavaScript

The language for programming web pages

LEARN JAVASCRIPT JAVASCRIPT REFERENCE

JavaScript Example:

<script>
function myFunction() {
    var x = document.getElementById("demo");
    x.style.fontSize = "25px";
    x.style.color = "red";
}
</script>

<button onclick="myFunction()">Click Me!</button>
Try it Yourself

SQL

A language for accessing databases

LEARN SQL

PHP

A web server programming language

LEARN PHP

jQuery

A JavaScript library for developing web pages

LEARN JQUERY

W3.CSS

A modern CSS framework for faster and better responsive web sites

LEARN W3.CSS

Color Picker

Bootstrap

Bootstrap is a CSS framework for designing better web pages

LEARN BOOTSTRAP



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-2016 by Refsnes Data. All Rights Reserved.