HTML Head Code For Website - Learn About Website | DaddyFile

0

The HTML <head> Element Explain

The HTML <head> element has nothing to do with HTML headings.
The HTML <head> element contains meta data. Meta data are not displayed.
The HTML <head> element is placed between the <html> tag and the <body> tag.


Html Code:

<!DOCTYPE html>
<html>
<head>
  <title>My First HTML</title>
  <meta charset="UTF-8">
</head>
<body>

<p>The HTML head element contains meta data.</p>
<p>Meta data is data about the HTML document.</p>

</body>
</html>



Html Code Result:

The HTML head element contains meta data.
Meta data is data about the HTML document.


Post a Comment

 
Top