title and its Role in SEO
Write effective page titles that rank well in search engines.
The title Element
The <title> element sets the document title — one of the most important pieces of HTML:
- Displayed in the browser tab
- Shown in search engine results (SERP)
- Used as the default bookmark name
- Read aloud by screen readers when a page loads
Where title Goes
The title element belongs inside <head>:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Learn HTML5 — CoddyKit</title>
</head>
<body>...</body>
</html>