Export page as pdf

hi guys,
i need a help,
i want to make whole html page/particular did/ table to pdf. any idea how to do that.
i have attendance table in html i want to export it(table or particular div or whole page) as pdf.
here is my code and i want to export this html to pdf

page.html:

<ion-content >
<ion-item>
    <p style="font-weight:bold; text-align:center"> {{user?.EmployeeName}}</p>
 </ion-item>

  <table>
    <tr>
      <th>DT</th>
      <th>SHIFT</th>
      <th>IN</th>
      <th>OUT</th>
      <th>WH</th>
      <th>RM</th>
    </tr>
    <tr *ngFor="let item of attendanceList">
      <td>{{item.AttendanceDate| date: "dd"}}</td>
      <td>{{item.Shift}}</td>
      <td>{{item.InTime}}</td>
      <td>{{item.OutTime}}</td>
      <td>{{item.WorkingTime}}</td>
      <td>{{item.AttendanceStatus}}</td>
    </tr>
  </table>
</ion-content>

Check this.