HTML head Tag
Friday, March 9th, 2018

HTML5 Tags
0 COMMENTS
The <head> tag represents the head portion the webpage that contains information about the page. basically head tag use for css, meta tags, title included.
<!DOCTYPE html>
<html>
<head>
<title> Page title </title>
</head>
<body>
Page body
</body>
</html>
<html>
<head>
<title> Page title </title>
</head>
<body>
Page body
</body>
</html>
Attributes
Attribute | Value | Description |
---|---|---|
Profile | url | specifies the location of one or more meta data profiles |
Global Attributes
This tag supports the global attributes in HTML5
Event Attributes
This tag supports the event attributes in HTML5
Browser Compatibility
Firefox | Google Chrome | Internet Explorer | Apple Safari |
---|---|---|---|
All | All | All | All |