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:
<title>My tab name here ...</title>
or in JavaScript run:
document.title = 'My tab name here ...';
Check this articles:
0 comments
Add comment