Computer Science, asked by brishtimaji, 1 year ago

write down the function of following tag: (1) title​

Answers

Answered by devd7
3

The <title> tag is required in all HTML documents and it defines the title of the document.

The <title> element:

1. defines a title in the browser toolbar

2. provides a title for the page when it is added to favorites

3. displays a title for the page in search-engine results.

Answered by Anonymous
0

Answer:

The title tag is defined as the title for the web browser. The title tag is compulsory for designing a web page with HTML. The title appears in the title bar in the web page. It gives the user a brief idea of what the website is about.we use It to give a name for the website.

Title tag is opened by <title> and ended by </title>

Title tag is placed between <head> and </head>

example of a basic html coding:

<html>

 <head>

    <title>first page</title>

 </head>

 <body>

    This is a line of text.  

 </body>

</html>

Similar questions
Math, 6 months ago