answersLogoWhite

0

Title in HTML

Updated: 8/17/2019
User Avatar

Wiki User

12y ago

Best Answer

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>

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Title in HTML
Write your answer...
Submit
Still have questions?
magnify glass
imp
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;


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: &lt;HTML&gt; &lt;head&gt; &lt;title&gt;This Page Title&lt;/title&gt; &lt;/head&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.