11.11.1. HTML element ¶
element contains all the header tag elements. In can insert scripts (scripts), style files (CSS), and various meta messages into the element.
The element labels that can be added to the header area are: , and
11.11.2. HTML element ¶
tags define the titles of different documents.
is required in HTML/XHTML documents.
elements:
-
Defines the title of the browser toolbar
-
The title displayed in the favorites when the web page is added to the favorites
-
The title displayed on the search engine results page
A simple HTML document:
Example ¶
document title document content...... 11.11.3. HTML < base > element ¶
The tag describes the basic link address / link destination and serves as the default link for all link tags in the HTML document:
<head> <base href="http://www.runoob.com/images/" target="_blank"> head> 11.11.4. HTML < link > element ¶
tags define the relationship between the document and external resources.
tags are typically used to link to style sheets:
<head> <link rel="stylesheet" type="text/css" href="mystyle.css"> head>