HTML Tutorial

The language for building web pages.

HTML Head

The HTML <head> Element

The <head> element is a container for metadata (data about data). Metadata is not displayed. The <head> element is placed between the <html> tag and the <body> tag.

Elements inside <head>:

  • <title> - Page title in browser tab
  • <meta> - Charset, viewport, description
  • <link> - External CSS files
  • <style> - Internal CSS
  • <script> - JavaScript
  • <base> - Base URL for relative links

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics