HTML Basic
HTML Advanced
| HTML Head |
The HTML head ElementThe head element is a container for all the head elements. Elements inside <head> can include scripts, instruct the browser where to find style sheets, provide meta information, and more. The following tags can be added to the head section: <title>, <base>, <link>, <meta>, <script>, and <style>. The HTML title ElementThe <title> tag defines the title of the document. The title element is required in all HTML/XHTML documents. The title element:
A simple HTML document, with the minimum of required tags:
The HTML base ElementThe <base> tag specifies a default address or a default target for all links on a page:
The HTML link ElementThe <link> tag defines the relationship between a document and an external resource. The <link> tag is most used to link to style sheets:
The HTML style ElementThe <style> tag is used to define style information for an HTML document. Inside the style element you specify how HTML elements should render in a browser:
The HTML meta ElementThe <meta> tag provides metadata about the HTML document. The meta element will be explained in the next chapter. The HTML script ElementThe <script> tag is used to define a client-side script, such as a JavaScript. The script element will be explained in a later chapter. HTML head Elements
|
HTML Head