answersLogoWhite

0


Best Answer

The TITLE element in an HTML page is used to describe the page. TITLE is, essentially, a specialized meta-tag.

The contents of the TITLE element are used by browsers when creating bookmarks, and are often displayed in the title bar of the window or tab the page is loaded in. Search engines also use the TITLE of the page when building links.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

Hyper Text Transfer Protocol

H T T P

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the function of title in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering
Related questions

How does hmtl function?

HTML basically tells the computer what to do. it does this by using codes embedded in the <> To start out an HTML command you have to type <HTML> to end an HTML command you have to type the same command as the first, but put a / in front of the command </HTML>. other than that its basically English, if you want to title you page, you type <title>. Example: <HTML> <Title>Basic Webpage</Title> <body> <p> Hello World, this is a basic webpage using HTML </p> </body> </HTML>


How do you prepare an HTML?

The basic HTML base to a HTML website is <HTML> <title> </title> <head> </head> <body> </body> </HTML>


What is the skeleton for an HTML based webpage?

<html> <head> <title></title> </head> <body> </body> </html>


Title in HTML?

A HTML document's title refers to the text that appears in the tabs on a surfer's browser, basically it is the name of the page. The tag to set the title goes in the HEAD section of the HTML document, you add the tag: <title>Your Title Goes Here</title> Again, this belongs in the head, so like this: <!doctype HTML> <HTML> <head> <title>Your Title Goes Here</title> </head> <body> Page content here </body> </HTML>


What is meant by title in HTML?

The title in HTML would be referring to the HTML title tag. This is a meta tag that sits at the top of your web page. The title tag is displayed at the top of your browser to indicate the name of the page you are viewing. The page title tag is also used by the search engines to label a specific page. Example: <HTML> <head> <title>This Page Title</title> </head> </HTML>


What are the basic elements of HTML document?

HTML head title /title meta style /style /head body /body /HTML


What is the effect of body in HTML?

The <body></body> tag defines the body of an HTML document. Here is the minimum format needed for a basic HTML page. <html> <head> <title>Title</title> </head> <body> Stuff goes here... </body> </html>


Which tags are allowed in the HTML head portion of the HTML document?

<TITLE> </TITLE>, Text formatting tags


Which HTML tags are used to mark the title of the document?

<title>My Title</title>


What is the function of HTML in a webpage?

The function of HTML as a scripting language is limited to it's design. All the design developed can be viewed by HTML.


What is the effect in the body?

The <body></body> tag defines the body of an HTML document. Here is the minimum format needed for a basic HTML page. <html> <head> <title>Title</title> </head> <body> Stuff goes here... </body> </html>


Can a TITLE tag can be used in any section of a webpage?

No, it must be used in the section of your HTML document. Here is an example of how to use it: <html> <head> <title>Web Page</title> </head> <body> </body> </html>