paint-brush
Set or Update New Title and Meta Tag - Angularby@anilvermaspeaks
194 reads

Set or Update New Title and Meta Tag - Angular

by Anil VermaJanuary 13th, 2022
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

In angular applications, we usually see the same title and meta tag along with all pages. So problem is, can we update or set different titles and meta tags in the angular applications? The answer is Yes. But How? This article is all about setting/updating different titles/tags along with pages.
featured image - Set or Update New Title and Meta Tag - Angular
Anil Verma HackerNoon profile picture


In Angular applications, we usually see the same title and meta tag along with all pages.


So the problem is, can we update or set different titles and meta tags in the angular applications?


The answer is Yes. But How?


This article is all about setting/updating different titles and meta tags along with all pages.


Title

To set different “Title” on the page(head section)


Step 1-

import { Title} from '@angular/platform-browser';


Step 2-

public constructor(private titleService: Title) { }ngOnInit() {
    this.titleService.setTitle("your page title");
  }


Same steps you can repeat on different pages where you want to set new Title of Page



Meta

To set/update different “Meta” on the page(head section)


Step 1-

import { Meta} from '@angular/platform-browser';


Step 2-

public constructor(private metaService: Meta) { }



Add New Meta Tags

ngOnInit() {
    this.metaService.addTags([
      {name: 'keywords', content: 'your keywords content'},
      {name: 'description', content: 'your page description content'},
    ]);
  }



Update Meta Tag

ngOnInit() {
    this.metaService.updateTag({ name: 'keywords', content: 'your updated keywords content'});
  }



Remove Meta Tag

ngOnInit() {
    this.metaService.removeTag({ name: 'keywords', content: 'your updated keywords content'});
  }



Happy Learning….👏👏👏👏