Loading external site within a page

I was recently tasked out with bringing over a website into mobile app for a demo.
Quickest way to accomplish the work would be generate a new project using the sidemenu template and then just add more menus that display an external site inside the content for each menu.
Is this possible with Ionic/angular? If so I would be open to suggestions on what documentation to look at to move on this.
Appreciate the the feedback.

<ion-header>
  <ion-toolbar>
    <ion-buttons slot="start">
      <ion-menu-button></ion-menu-button>
    </ion-buttons>
    <ion-title>
      Beroe - Marketing
    </ion-title>
  </ion-toolbar>
</ion-header>

<ion-content>
  <external site here>
</ion-content>

Jquery would look like this

<div id="externalContainer" class="text-center">
</div>
$( "#externalContainer" ).load( myExternalPageLink );

Have an iframe there and load the site into it. But note that the site you are loading should not have X-Frame-Options : Deny set.