Last active
July 3, 2023 12:41
-
-
Save NyaGarcia/5555bccfd912bd4b1dc354326becc1f1 to your computer and use it in GitHub Desktop.
NgBytes Standalone Pokemon Detail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="detail"> | |
<h2>{{ pokemon.name }}</h2> | |
<h4>{{ pokemon.type }} type</h4> | |
<div class="content"> | |
<img [src]="pokemon.imageUrl" alt="Photo of a Pokemon" /> | |
<div> | |
<p>Attack: {{ pokemon.attack }}</p> | |
<p>Defense: {{ pokemon.defense }}</p> | |
<p> | |
{{ pokemon.description }} | |
</p> | |
</div> | |
</div> | |
</div> | |
<button mat-raised-button color="primary" routerLink=""> | |
Back to Pokemon List | |
</button> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment