Tuesday, December 25, 2018

Head html.

HTML  HEAD:-

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

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

</body>
</html>

OUTPUT:-

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

No comments:

Post a Comment

Internal Javascripts

Internal Javascripts :    The script code can be written directly into the HTML document. script code is placed in header of the docume...