Page title
Introduction#
How can you change the title of the page
Syntax#
setTitle(newTitle: string): void;
getTitle(): string;
changing the page title
-
First we need to provide Title service.
-
Using setTitle
import {Title} from “@angular/platform-browser”; @Component({ selector: ‘app’, templateUrl: ‘./app.component.html’, providers : [Title] })
export class AppComponent implements { constructor( private title: Title) { this.title.setTitle(‘page title changed’); } }