- HTML Tutorial
- HTML - Home
- HTML - Introduction
- HTML - Editors
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Headings
- HTML - Paragraphs
- HTML - Fonts
- HTML - Blocks
- HTML - Style Sheet
- HTML - Formatting
- HTML - Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Headers & Caption
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB
- HTML - HEX
- HTML - HSL
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML - <title> Tag
HTML title tag is used to represent the webpage title that can be visible on the browser title bar, and we can also observe it on the search engine result page.
The <title> tag is defined inside of the <head> tag, and it should be text-only. It is visible in the browser’s title bar or in the page’s bar.
If we define the title of an HTML document, then it helps to relate the document, like the name of the organization or the name of the page.
Syntax
<title> The title of the page will come here... </title>
Attribute
HTML title tag supports Global Attributes of HTML
Try to click the icon run button to run the following HTML code to see the output.
Examples of HTML title Tag
Bellow examples will not show you the effect of title tag because we are running the code in online editor, so there will be no window bar. If you save that code locally and open it on any browser you cen see the title tag text on the browser window tab.
Using title tag to create tab title
In the following example, we are creating a simple HTML document that contains a title of the page.
<!DOCTYPE html> <html> <head> <title>this_is_title</title> </head> <body></body> </html>
Tips to Create Good Title
It is not necessary to follow all the points mentioned bellow to create good title. The first priority to create a title is that the keywords should be relatable to the content. If you open our landing page you can see on the browser tab "Online Tutorials, Courses, and eBooks Library | Tutorialspoint" as you have seen at the top of this post.
- Always choose meaningful and related keyowrds for the title that you are creating.
- Seacrh engines can display 50-60 characters so keep your in that length.
- Do not use list of keywords that does not make any sense.
Note: You can NOT have more than one <title> element in an HTML document.
Supported Browsers
Tag | |||||
---|---|---|---|---|---|
title | Yes | Yes | Yes | Yes | Yes |