answersLogoWhite

0


Best Answer

Use the <title></title> element. To make a title on the page use <h1></h1>

User Avatar

Wiki User

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

Flamingo

Lvl 2
3y ago

Hi if you are looking to make a title with HTML here is the script

ᴄʜᴀɴɢᴇ ᴛʜɪꜱ ᴛᴏ ʏᴏᴜʀ ᴏᴡɴ ᴛᴇxᴛ

Where it says "ᴄʜᴀɴɢᴇ ᴛʜɪꜱ ᴛᴏ ʏᴏᴜʀ ᴏᴡɴ ᴛᴇxᴛ" Add your own text to it :)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Where do we define the title of the HTML document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

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


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

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


What are the basic elements of HTML document?

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


What is document heading?

The head of a HTML document is where you define your sites title and meta tags, as well as linking to stylesheets. It is also possible to link to JavaScript in the head, but it is best to link them at the bottom of the body.


What is a document head?

The head of a HTML document is where you define your sites title and meta tags, as well as linking to stylesheets. It is also possible to link to JavaScript in the head, but it is best to link them at the bottom of the body.


Different heading levels of an HTML document?

&lt;html&gt; &lt;head&gt; &lt;title&gt; &lt;body&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 is used to define the structure and layout of a web document?

HTML


WHAT does tags do within HTML?

The tags in an HTML document provide a semantic layout for the file. They define what the data is. For instance, the tags define a paragraph.These tags aren't about how the data looks. Instead, the define what the data is.


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;


What element can only be discovered in the head section of an HTML document?

The title.


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;