When a visitors visits a web page, most common browsers will display the name of the page at the top of their window or browser tabs. The name is dictated by the page's <title> tag within the HTML code. If users would like to name their pages, they should adjust their page's title tag.
Note - eTrigue uses the <title> value as the initial Nickname of a newly tracked page.
To add a <title> value to your DemandCenter Landing Pages:
- Go to Assets and edit your landing page.
- Open Properties.
- Under Page Title, provide the title of your landing page.
- When finished, click Save to retain your changes.
If you are not using an eTrigue landing page and would like to update your title tag, then in your webpage management system, open up the code for your webpage.
Locate the <title> tags in your HTML. They should be within the <head> tag. If you do not find <title> tags in your HTML code, you can add them. The net resulting code should look something like below -- in our example "Product and Services" would be the name of the web page:
<html>
<head> <title>Product and Services</title> </head> <body></body> </html>