With the world's largest web developer site.
The language for building web pages
< !DOCTYPE html >
< html >
< head >
< title > HTML Tutorial < /title >
< /head >
< body >
< h1 > This is a heading< /h1 >
< p > This is a paragraph< /p >
< /body >
< /html >
The language for building web pages
body{
background-color: lightblue;
}
h1{
color: lightblue;
text-align: center ;
}
p{
font-family: verdana;
}
The language for building web pages
<button onclick ="myFunction()" >Click Me!</button>
<script>
function myFunction() {
let x = document.getElementById( "demo" );
x.style.fontSize = "25px"
x.style.color = "red"
}
</script >
The language for building web pages
if 5 > 2;
print ( "Five is greater than two!" )
The language for building web pages
SELECT * FROM Customers
WHERE CAOUNTRY= 'Mexico' ;
For example, how to create a slideshow: