Empty HTML page name

I was wondering if there is any possible way for the page title to be blank / transparent.

I tried each of the following headers without success:

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

Using them, the page title will be saved by default, as without code.

The closest I got is <title>.</title> .

I am using Chrome.

+5
source share
1 answer

Here's what works in my Chrome Chrome - Chrome seems to remove known spaces. This comes from https://www.cs.tut.fi/~jkorpela/chars/spaces.html

U + FEFF ZERO WIDTH NO-BREAK SPACE → <- No width (symbol is invisible)

HTML:

 <title>&#65279;</title> 
+7
source

Source: https://habr.com/ru/post/1264508/


All Articles