The following Angular components you should have in your page to implement a Horizontalmenu.
Horizontalmenu content Rootpath: src/app/shared/components/header.html You can change the code here.
src/app/shared/components/header.html
@Component({ selector: 'app-sidebar', templateUrl: './sidebar.component.html', styleUrls: ['./sidebar.component.scss'], encapsulation: ViewEncapsulation.None, }) export class SidebarComponent { ... }