HTML - Title
Learn to add a title to a webpage.
Title
The title of a website refers to the name that appear in the tab.
In the image below AlbaCode is the title of the webpage.
The title of a webpage is added in the head element.
To add a title to our webpage we use the title element.
index.html
<!DOCTYPE html>
<html>
<head>
<title>AlbaCode</title>
</head>
<body>
</body>
</html>
The title element has an opening tag and a closing tag.
The text that we want to appear in the tab is placed in between the opening and closing tags.
We can replace AlbaCode in the example above with the text that we want to appear.
Notice that we have indented the title element as it is contained within another element.