Computer Science, asked by yashguptaji, 1 year ago

how would you display text in the title bar of browser

Answers

Answered by Anonymous
97
Browser tabs display the FavIcon and the <title> of the page. You can't really display multiple lines in a browser tab, though you could separate information you want to display in it with a - , which is pretty common practice
Answered by hotelcalifornia
35

Answer:

Text can be displayed in the title bar of the browser using the <TITLE> tag within the HTML file of the web page. The <TITLE> tag is placed within the head section of the HTML document and is mandatory. There cannot be multiple <TITLE> tags within a given HTML document. Following is the example of a HTML file including <TITLE> tag

Example:

<HTML>

<HEAD>

 <TITLE> This is the title of my Page </TITLE>

</HEAD>

<HTML>

Similar questions