<head>
Why use <head> in html:
<head> Tag used to define the portion of the html document which
Know more information about the document. It contains a css sheet link and others think.
Syntax:
<head>
<title>Basic get in </title>
</head>
The <head> section contain this element:
<title> <style> <link> <meta> <script> <noscript>
Example:
<!DOCTYPE html>
<html >
<head>
<title>Basic get in </title>
</head>
<body>
<p>
Hay hello web developer!!!.
</p>
</body>
</html>
Post a Comment