html how have title code example
Example 1: change the title in html using
document.title = "My New Page Title";
Example 2: html title attribute
<head>
<title>This is your webpage title</title>
</head>
document.title = "My New Page Title";
<head>
<title>This is your webpage title</title>
</head>