At Fox tutorials, you can learn HTML, JavaScript, AJAX, PHP, MySql and many other useful Tutorials to create website step by step. These all tutorials are absolutely free.
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>
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;
}
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>
A language for accessing databases
SQL Example:
SELECT * FROM Customers
WHERE Country='Mexico';
Fox Tutorials for Free website development course
Learn HTML, JavaScript, AJAX, PHP, MySql and many more Tutorials for website development free step by step.