1<head>
2 <title>My page title</title>
3</head>
4<script>
5 document.title = "My new title";
6</script>
1/*Title popup*/
2
3<body>
4 <p title="Popup here">hover me!</p>
5</body>
6
7/*Tab title*/
8
9<head>
10 <title>This is the tab title</title>
11</head>
1<!DOCKTYPE html>
2<html>
3 <head>
4 <title>This Is A Website Title...</title>
5 </head>
6 <body>
7 <p>How to add a Title to a HTML website...</p>
8 </body>
9</html>