Head Element Tutorial
<head>
Introductory Text
The head element represents a collection of metadata used by User Agents (UAs) for document rendering.
- Start tag:
<head>- End tag:
</head>
Use Examples
- Example: [Basic (Common)]
- Code [HTML]:
-
<head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>head - Tutorial of the Head element from Structure in HTML with Web Standards</title> <link rel="stylesheet" type="text/css" href="/styles/element-attribute.css" media="screen,projection"> <script type="text/javascript" src="/js/jQuery/jquery-1.3.2.js"></script> <link rel="shortcut icon" href="/favicon.ico" type="image/ico"> <!--[if IE]> <script src="/js/html5.js" type="text/javascript"></script> <![endif]--> <link href="http://www.elementary-group-standards.com/" title="Home" rel="index"> </head>
Content Model/Assigned Attributes
- Element-Type:
- [NONE]
- Attributes:
</head>
