Skip to content

Try our new Crash Courses!

Buy one of our new Crash Courses, now hosted on Teachable.

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.

Exercises

Recreate the code snippet in the Details section by typing out the code in your index.html file. Then, try customizing the title element.

References

The Document Title element on MDN

Lesson tags: Open Lesson
Back to: HTML Reference > HTML Head Elements