answersLogoWhite

0

What is meant by title in HTML?

Updated: 11/18/2022
User Avatar

Wiki User

12y ago

Best Answer

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>

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

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

What is the skeleton for an HTML based webpage?

&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt;


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

&lt;TITLE&gt; &lt;/TITLE&gt;, Text formatting tags


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: &lt;html&gt; &lt;head&gt; &lt;title&gt;Web Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt;


What is the HTML code needed for a website that displays Hello World?

No code is needed. If you wanted to, you could just make a blank HTML page and write "Hello world" on it with out any HTML code. Tumudracs improved answer: If you want to be a true HTML coder here is the code: &lt;HTML&gt; &lt;head&gt; &lt;title&gt; Hello World &lt;/title&gt; &lt;/head&gt; &lt;body&gt; Hello World &lt;/body&gt; &lt;/HTML&gt; If you wanna get technical, it would be &lt;! DOCTYPE HTML PUBLIC "-//W3C DTD HTML 4.01//EN" "http://www.w3c.org/TR/html14/strict.dtd"&gt; &lt;HTML&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-1"&gt; &lt;title&gt;Hello World&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt; Hello World &lt;/p&gt; &lt;/body&gt; &lt;/HTML&gt;


How does one access the html head title?

One can access the HTML head title by breaking apart the code of the website by using software like Java script or HTML scripts which can be downloaded on different websites pertaining to website and URL configuration tools.

Related questions

How do you prepare an HTML?

The basic HTML base to a HTML website is &lt;HTML&gt; &lt;title&gt; &lt;/title&gt; &lt;head&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/HTML&gt;


What is the skeleton for an HTML based webpage?

&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt;


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: &lt;title&gt;Your Title Goes Here&lt;/title&gt; Again, this belongs in the head, so like this: &lt;!doctype HTML&gt; &lt;HTML&gt; &lt;head&gt; &lt;title&gt;Your Title Goes Here&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Page content here &lt;/body&gt; &lt;/HTML&gt;


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 &lt;body&gt;&lt;/body&gt; tag defines the body of an HTML document. Here is the minimum format needed for a basic HTML page. &lt;html&gt; &lt;head&gt; &lt;title&gt;Title&lt;/title&gt; &lt;/head&gt; &lt;body&gt; Stuff goes here... &lt;/body&gt; &lt;/html&gt;


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

&lt;TITLE&gt; &lt;/TITLE&gt;, Text formatting tags


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

&lt;title&gt;My Title&lt;/title&gt;


How does hmtl function?

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


What is the effect in the body?

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


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: &lt;html&gt; &lt;head&gt; &lt;title&gt;Web Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;/body&gt; &lt;/html&gt;


Different heading levels of an HTML document?

&lt;html&gt; &lt;head&gt; &lt;title&gt; &lt;body&gt;


What are the four tags you need in a properly formatted HTML file?

The HTML tag " &lt;html&gt; " , the head tag " &lt;head&gt; " , the title tag " &lt;title&gt; " and the body tag " &lt;body&gt; ". Please make sure to close those tags. Here is an example of those with a few extra tags. " &lt;html&gt; &lt;head&gt; &lt;title&gt; Your Title Here &lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;h1&gt; Your header here &lt;/h1&gt; &lt;p&gt; Your Text here &lt;/p&gt; &lt;/body&gt; &lt;/html&gt; " Also, look in the related links for a website for some tutorials for HTML.