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>
<html>
<title>HTML Tutorial</title>
<body>
<h1>This is a heading.<h1>
<p>This is a paragraph.</p>
</body>
</html>
JavaScript
The language for programming web pages.
JS Example:
<button onclick="myFunction()">
Click Me!</button>
<script>
function myFunction() {
let x = document.getElementById("demo");
x.style.fontSize = "25px";
x.style.color = "red";
}
</script>
<script>
function myFunction() {
let x = document.getElementById("demo");
x.style.fontSize = "25px";
x.style.color = "red";
}
</script>
PHP
A web server programming language
jQuery
A JS library for developing web pages
JAVA
A programming language
Bootstrap
A CSS Framework for better pages