quick intro

🧩 Syntax:
<div style="text-align:center">
  <h1>
    Welcome!
  </h1>
</div>

 <!--The code to display images -->
 <div>
  <style>
    table, th, td {
      border: 1px solid;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 10px;
      padding-right: 10px;
    }
    </style>
    <tr>
      <th>User ID</th>
      <th>Full Name</th>
      <th>Street Address</th>
      <th>Zip Code</th>
    </tr>
    <tr *ngFor="let user of data">
      <td>{{ user.id }} </td>
      <td>{{ user.name }}</td>
      <td>{{ user.address.street }}</td>
      <td>{{ user.address.zipcode }}</td>
    </tr>
  </div>