- Normally the project name will be the DT title.
- The DT title is the text that appears in the browser tab.
- However, its possible to override this using a script
- You could change the title at any time. For example node by node.
- In this example we will change the title for the whole DT
In the DT level scripts
Create a new script above the closing </head> section

Simply copy this code:
<script>
setInterval(function() { document.title = "Some new title text"; }, 1000);
</script>
Change the text in double quotes to be your new title.