Computer Science, asked by RajlaxmiOjha, 1 month ago

title tag is used in the head tag of HTML true or false


if someone wants 48 point then answer correctly ​

Answers

Answered by anurag21286
3

Answer:

simple HTML document, with a <title> tag inside the head section:

<!DOCTYPE html>

<html lang="en">

<head>

<title>Title of the document</title>

</head>

<body>

<h1>This is a heading</h1>

<p>This is a paragraph.</p>

</body>

</html>

Answered by ltzSweetAngel
3

The HTML Title element ( <title> ) defines the document's title that is shown in a browser's title bar or a page's tab. It only contains text; tags within the element are ignored.

The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag. Metadata is data about the HTML document. Metadata is not displayed. Metadata typically define the document title, character set, styles, scripts, and other meta information..

A title tag is an HTML element that specifies the title of a web page. Title tags are displayed on search engine results pages (SERPs) as the clickable headline for a given result, and are important for usability, SEO, and social sharing.

Similar questions