head

head
HTML head Element
The HTML <head> element is used to relate the web document's metadata by using the <title> and <meta> elements inside of it. Inside this element is where we also place links to external Javascript and CSS files that your document requires to run using the<link> element, as well as a few other resources you can link to the document.

HTML CODE EXAMPLE
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>My Web Page</title>
</head>
<body>
</body>
</html>

Attributes for this element:

datetime - the date or date-time the text was deleted
Possible Values:"date-time sysntax as defined here"
cite - refer to a URL that explains why the text was deleted
Possible Values: "URL string"
global attributes - global core attributes
See: list of global attributes

Event handlers for this element:

global event handlers - global event handler attributes
See: list of global event handlers


0 Response to "head"

Post a Comment