This video demonstrate how to use header section in html that is it gives answer of what is head in html.
code:
<!DOCTYPE html>
<html>
<head>
<title>Learning Header Section</title>
<style>
body {
background-color: yellow;
}
</style>
<script>
function shout()
{
alert("i am shouting.")
}
</script>
</head>
<body onload="shout()">
something in body part
</body>
</html>
No comments:
Post a Comment