Computer Science, asked by qazimohdashraf12may2, 2 months ago

in which section do you enter the <title> tag?
(a) <html>
(b) <body>​

Answers

Answered by himanshu2006vps
4

Answer:

The HTML <title> tag is used for indicating the title of the HTML document. The body title is placed between the <html> and the </html> tags

HTML document title is visible via browser’s title bar.

Explanation:

Example

<!DOCTYPE html>

<html>

<head>

<title>Title comes here</title>

</head>

<body>

<p>title tag is used for indicating the title of the HTML document. HTML document

title is visible via browser’s title bar.</p>

</body>

</html>

please mark me as brainliest

Similar questions