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.
- Click on the HTML
button within the WYSIWYG toolbar to view your landing page template in HTML mode.
- 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> - When finished, click Save to retain your changes.