Well,
- Contains information about the page such as the TITLE, META tags for proper Search Engine indexing, STYLE tags, which determine the page layout, and JavaScript coding for special effects.
Closes The Head Area
----
Hope This Helps,
JBird608
Chat with our AI personalities
The head tags contain general information about the HTML document. Tags that can be included within the head tags are: <meta>, <title>, <style>, <base>, <link>, and <script>. The Meta tags are used to provide information to the browsers or search engines. This is where the Keywords, and description of the page is located. The information provided in the head tags does not display in the web page..
The head tag includes everything you would you would usually put in the header of a website. ie name, company picture etc.
However the title tag is a tag you can place inside the head tag to say what the title of the website is going to be.
The main difference is the head tag can have multiple tags within in whereas the title tag is a tag that can go inside a head tag
<html> <head> <title></title> </head> <body> </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>
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>
<TITLE> </TITLE>, Text formatting tags
<u> in HTML underlines the specified text.