+ 18
What is the use of meta in HTML???
What are the various uses of meta element ???
5 Respostas
+ 10
> Metadata is data (information) about data.
> The <meta> tagprovides metadata about the HTML document.
> Metadata will not be displayed on the page, but will be machine parsable.
> Metaelements are typically used to specify page description, keywords, author of the document, last modified, and other metadata.
:)
+ 10
Meta tag provides information about html document such as page description , author of document, search keywords and other web services .
metadata will not be dispaly on the webpage.
meta tag always inside the head tag
meta tag is always passed name value pair
examples-
define keywords for search engine
<meta name="keyword " content="html,css">
define the author of a webpage
<meta name="author " content="ganesh">
+ 5
## The <meta> tag provides metadata about the HTML document.
## Metadata will not be displayed on the page, but will be machine parsable.
## Metaelements are typically used to specify page description, keywords, author of the document, last modified, and other metadata.
+ 2
use to refresh page,show content and author ..and viewport
- 1
What is viewport