Empty HTML page title

6.4k Views Asked by At

I was wondering if there is any possible way to set the title of a page to empty/transparent.

I have tried each of the following titles without success:

<title></title>
<title> </title>
<title>&nbsp;</title>

Using them, would keep the default title of the page, just like it would be without the code.

The closest I got was with <title>.</title>.

I'm using Chrome.

1

There are 1 best solutions below

6
On BEST ANSWER

Here is one that works in my Windows Chrome - Chrome seems to remove known spaces. This one comes from https://www.cs.tut.fi/~jkorpela/chars/spaces.html

U+FEFF ZERO WIDTH NO-BREAK SPACE -><- No width (the character is invisible)

HTML:

<title>&#65279;</title>