Have you failed a job interview?
Send us your job interview questions and get correct answers.
What is <meta> tag?
Experience Level: Junior
Tags: HTML
Answer
The <meta>
tag contains meta data about the HTML document. They are not displayed on the web page.
Meta data is data that provides information about other data:
- descriptive metadata
- structural metadata
- administrative metadata
- reference metadata
- statistical metadata
<html>
<head>
<meta name="description" content="Courses tests" />
</head>
<body>
...
</body>
</html>
Related HTML job interview questions
In a HTML web page, what is the top-most tag that holds all the other tags?
HTML JuniorWhat markup helps a browser to understand how to parse a web page properly?
HTML JuniorWhat is <hr> tag?
HTML JuniorWhat is <u> tag?
HTML JuniorWhat is <sup> tag?
HTML Junior