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.
- 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
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified 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.
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.
<head profile="https://www.bitdegree.org/">
<title>The page title</title>
</head>
Note: the HTML <head> tag accepts global attributes.