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


Related Posts :

  • option option HTML option Element The HTML <option> option element is used to define the options… Read More...
  • optgroup optgroup HTML optgroup Element The HTML <optgroup> options group element is used to group… Read More...
  • p p HTML p Element The HTML <paragraph> element is used to specify a paragraph in the web … Read More...
  • output output HTML output Element NOTE: This new element is HTML5 and will be a standardized element i… Read More...
  • param param HTML param Element The HTML <param> element is used to specify parameters that will… Read More...

0 Response to "head"

Post a Comment