In HTML, the page title is set using the <title>tag inside the <head> section.
Example:
<!DOCTYPE html>
<html>
<head>
<title>My Website Title</title>
</head>
<body>
<h1>Welcome to my page</h1>
</body>
</html>
The text inside
<title> appears:- In the browser tab
- In bookmarks/favorites
- Often as the title shown by search engines

0 Comments