How to put tab on top on specific page only?

Hi im new to ionic, how do i put the tabs on specific page on the top, and on some pages below?

You want a footer?

<ion-footer>
  <ion-toolbar>
  </ion-toolbar>
</ion-footer>
<ion-header no-border>
  <ion-toolbar>
    <ion-title>Header</ion-title>
  </ion-toolbar>
</ion-header>

<ion-content>
</ion-content>

<ion-footer no-border>
  <ion-toolbar>
    <ion-title>Footer</ion-title>
  </ion-toolbar>
</ion-footer>

Documentation: https://ionicframework.com/docs/api/components/toolbar/Toolbar/