<meta> Tag in HTML 5

In this article I am going to tell about <meta> Tag in HTML 5.
  • 2221

Definition

<meta> Tag is used for providing meta information about the data. Metadata can include document description, author, keywords etc.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>
<head>
      <meta name="description" content="Free Web tutorials" />
      <meta name="keywords" content="HTML,CSS,XML,JavaScript" />
      <meta name="author" content="Ståle Refsnes" />
      <meta charset="UTF-8" />
</head>
       <body>This is Mindcracker...</body>
</html>

Output

meta.JPG

Further Readings

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.