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>
<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
Possible Values:"date-time sysntax as defined here"
Possible Values: "URL string"
See: list of global attributes
0 Response to "head"
Post a Comment