+ 1
What did <meta> do in Html?
4 Réponses
+ 9
Here is a good explanation for meta data ;)
http://www.w3schools.com/tags/tag_meta.asp
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>
+ 3
It provides metadata for the document.
+ 3
Read up more on metadata
https://www.sololearn.com/discuss/632608/?ref=app
0
Contains meta data.