What are meta tags?

kumkumsharma

Administrator
Staff member
Meta tags define meta data or information about the page. Metadata is data about data. You always have to create meta tags inside <head> tag, you will not find metadata on your page, but it can be read by machine only. You can find search engines and other web services related details which is used by browser.

</head>
Code:
<head>
<meta charset="UTF-8">
<meta name="description" content="Tutorials">
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<meta name="author" content="Hoststud">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
 
Top