How do I change the name of a glitch site?

I need to change the name to a site for school but can’t figure out how. It’s not the url but the actual name of the site that shows on the tab.

Hi @etheaen

You can change the project name by opening the project in the editor and then following these steps:

  1. In the project editor, click Settings > Edit details on project page
  2. On the project page, click Edit details to make your changes.
  3. Once you are done, click Save .

You can learn more about this here.

1 Like

could you please say what language are you coding with? it would be much easier to help with that information.

You just need the click the buttons in the editor, no code

he wants to change the tab name

oh in that case, see this reference

1 Like

To add it, use HTML to your <head>:

<title>My title!!</title>

Or to change it, use use JS:

document.title = "hello world"
1 Like

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.