anime-manage.component.html 845 Bytes
Newer Older
jakkree kongpha's avatar
jakkree kongpha committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
<!DOCTYPE html>
<html>
<head>
<style>

.center {
  margin-left: auto;
  margin-right: auto;
}
.centered-form{
  text-align: center;
}


table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 80%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
</style>
</head>
<body>

<h2 class="centered-form">Anime Manage</h2>
  <table class="center">
    <tr >
      <th>Animename </th>
      <th>Animetype</th>
      <th>Animedetail</th>
      <th>update</th>
      <th>delete</th>
    </tr>
    <tr *ngFor="let s of animes">
      <td>{{ s.animename }}</td>
      <td>{{ s.animetype }}</td>
      <td>{{ s.animedetail }}</td>
      <td> <button>Update</button> </td>
      <td> <button>Delete</button> </td>
    </tr>
  </table>


</body>
</html>