Lots of things can go into the head of a document. Usually it is things that can affect or be used anywhere in the document. Two good examples are to have some scripting and some CSS code in the head area. There are lots of other things, like Meta tags.
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.
The basic HTML base to a HTML website is <HTML> <title> </title> <head> </head> <body> </body> </HTML>
<html> <head> <title></title> </head> <body> </body> </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>
This is done using the <title></title> tag set, which must appear inside a <head></head> tag-set: e.g. <HTML> <head> <title> Here is a title to display at the top of the browser. You can put anything here that explains or otherwise has relevance to your page</title> </head> <body> A bog standard HTML page </body> </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>
HTML head title /title meta style /style /head body /body /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>
<TITLE> </TITLE>, Text formatting tags
<title>My Title</title>
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>
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: <HTML> <head> <title> Hello World </title> </head> <body> Hello World </body> </HTML> If you wanna get technical, it would be <! DOCTYPE HTML PUBLIC "-//W3C DTD HTML 4.01//EN" "http://www.w3c.org/TR/html14/strict.dtd"> <HTML> <head> <meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-1"> <title>Hello World</title> </head> <body> <p> Hello World </p> </body> </HTML>