The HTML Format for an Input Title
- The purpose of the title tag is to create a brief summary of the page content for users and search engines. The title requires only a few words, and your main keyword phrases you want to target in the search engines are placed in the title tag. Webmasters creating each Web page must keep the titles unique to avoid duplicate titles in the search engines.
- The title tag is placed in the main "head" section of the HTML code. The opening and closing head tags are at the top of the HTML page, so the title tag is one of the first tags created in the Web page development process. The dynamic languages let you dynamically create a Web page title.
- The HTML title tag takes no parameters and it does not have any properties. The following code is the format for the title tag:
<title>Title of Page</title>
Replace "Title of Page" with your own page title. You place this tag within the opening "<head>" tag and the closing "</head>" tag, which is directly above the opening body tag. - Avoid keyword stuffing an HTML title. Keyword stuffing is the act of placing the same keyword multiple times in the title or content of the Web page. Place the keyword phrase you're targeting once, and avoid keyword stuffing in an attempt to manipulate search engine results. Keyword stuffing leads to search engine penalties.
Purpose
Placement
Format
Considerations
Source...