View Single Post
Old 08-26-2016, 07:54 AM   #3
smmexpertss
Registered User
 
Join Date: Sep 2015
Location: UK
Posts: 447
HTML meta tags are officially page data tags that lie between the open and closing head tags in the HTML code of a document.

The text in these tags is not displayed, but parsable and tells the browsers (or other web services) specific information about the page. Simply, it “explains” the page so a browser can understand it.

Here’s a code example of meta tags:

<head>
<title>Not a Meta Tag, but required anyway </title>
<meta name="description" content="Awesome Description Here">
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
</head>
smmexpertss is offline   Reply With Quote