how to link a button to a page in ionic 3
1. Generate new page in ionic Example: ionic g page about 2. create a button HTML <button ion-button (click)=”openAboutPage()”>Button</button> 3. app.module.ts add your page to app module ( plz focus on Aboutpage) …