Skip to content

This is one of our old lessons! Visit the Path page to see all of our latest courses.

Title element – HTML

Summary

<!DOCTYPE html>
<html lang="en">
<head>
  <!-- Edit the title element below -->
  <title>Web page title</title>
</head>

Details

The title element controls the text displayed in the browser tab. For example, the title on this browser tab is “Title element – HTML | Simple Dev”, so the title element for this page looks like this:

<title>Title element - HTML | Simple Dev</title>

The title element is always nested inside the head element.

References

The Document Title element on MDN