Google News
logo
UI Developer - Interview Questions
Define HTML meta tags.
* Meta tags are passed as pairs of name/value.

* Meta tags fit inside the HTML page’s head tag.

* Meta tags are not displayed on the page but it is to be shown on the browser.

* Meta tags can contain information about character encoding, description, title of the document etc,

<!DOCTYPE html>
<html>
<head>
  <meta name="description" content="web page with description like (Tutorlas, Interview Question, etc,.)"> 
  <title>Free Time Learn</title>
</head>
<body>
  
</body>
</html>​
Advertisement