EN
How to set web browser tab name?
1 answers
6 points
Hi, sorry for my stupid question.
What I should do to change the text displayed as tab name?
This part:

1 answer
4 points
In HTML add in <head>
element:
xxxxxxxxxx
1
<title>My tab name here ...</title>
or in JavaScript run:
xxxxxxxxxx
1
document.title = 'My tab name here ...';
Check this articles:
0 commentsShow commentsAdd comment