🚨 Get Your Free NFT Certificate Mint by Completing the Web3 Exam! START NOW

Code has been added to clipboard!

HTML head Tag

Reading time 1 min
Published Jun 29, 2017
Updated Oct 2, 2019

HTML head Tag: Main Tips

  • The HTML <head> element contains important information (metadata) of a document such as titles, scripts, links to style sheets, etc.
  • The <head> in HTML is not meant to be read by humans, but for machine-related procedures.
DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

Use of head

The <head> tag in HTML indicates a space for declaring titles, style sheets, scripts and other document-related information. For adding introductory information such as authors' names or brand logos, use the <header> element.

Example
<head>
  <title>Document title</title>
</head>

The <link>, <title>, <meta>, <style>, <script>, <noscript>, <base> elements are children of the <head> tag.

profile

It specifies a link to the metadata information of the document. Not supported in HTML5.

Example
<head profile="https://www.bitdegree.org/">
  <title>The page title</title>
</head>

Note: the HTML <head> tag accepts global attributes.

Browser support

Browser image
Chrome
1+
Browser image
Edge
All
Browser image
Firefox
1+
Browser image
IE
All
Browser image
Opera
All
Browser image
Safari
All

Mobile browser support

Browser image
Chrome
All
Browser image
Firefox
4+
Browser image
Opera
All
Browser image
Safari
All