answersLogoWhite

0

What goes into the head of HTML apart from the title?

Updated: 8/21/2019
User Avatar

Wiki User

8y ago

Best Answer

The title is the only mandatory thing that goes in the head area, but lots of other things can. For example, you can put in META tags, which can be used to specify information about the document. You can put in CSS code, that can be used for the page. You can put in scripting that can be used in the page. You can use some base tags to set defaults for the page, like the colour or the initial part of a website that you may have lots of pages linking to. So there are many things that you can use the head area for.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What goes into the head of HTML apart from the title?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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 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>


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>


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>


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.


What are the basic elements of HTML document?

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


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

<TITLE> </TITLE>, 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: <html> <head> <title>Web Page</title> </head> <body> </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>


How do you save the DHTML file?

<html> <head> <title>in line style sheet </title> </head> <body> <hr>dfdsfdsfsdfdsf</hr> </boday> </html>


Example of HTML tags and their definition?

HTML Code looks like the following: <HTML> <HEAD> <TITLE> Page Title Goes Here</TITLE> </HEAD> <BODY BGCOLOR="FFFFFF" TEXT="000000"> Your webpage content goes here, which is everything you see on the webpage pretty much. </BODY> </HTML> The tags don't all have to be capitalized but it separates them from the other stuff ou have in the HTML document.