Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Empty HTML page title

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.

like image 434
J. Vie Avatar asked Feb 21 '17 10:02

J. Vie


1 Answers

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>
like image 121
mplungjan Avatar answered Oct 23 '22 07:10

mplungjan