

HTML Example:
<!DOCTYPE html>
<html>
<head> <title>HTML Tutorial</title> </head>
<body> <h1>This is a heading</h1>
<p>This is a paragraph.</p> </body> </html>
Try it Yourself
<head> <title>HTML Tutorial</title> </head>
<body> <h1>This is a heading</h1>
<p>This is a paragraph.</p> </body> </html>
CSS Example:
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}
p {
font-family: Jost;
}
Try it Yourself
JavaScript Example:
<button onclick=“myFunction()”>Click Me!</button>
<script>
function myFunction() {
let x = document.getElementById(“demo”);
x.style.fontSize = “20px”;
x.style.color = “Blue”;
}
</script>
Try it Yourself
<script>
function myFunction() {
let x = document.getElementById(“demo”);
x.style.fontSize = “20px”;
x.style.color = “Blue”;
}
</script>