+ 8
What is meta data, how can i use meta tags.
3 Respostas
+ 7
Here is a good explanation for meta data ;)
http://www.w3schools.com/tags/tag_meta.asp
But if you dont want to read the whole stuff this is the short answer:
What is Meta data?
Metadata is data (information) about data.
The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.
example how to use it:
<head>
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<meta name="author" content="John Doe">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
+ 6
Thanks
0
Thanks