Skip to content

Instantly share code, notes, and snippets.

@planetoftheweb
Last active May 1, 2021 10:39
Show Gist options
  • Select an option

  • Save planetoftheweb/7f8e48a30e595ab918af4a148b8c4247 to your computer and use it in GitHub Desktop.

Select an option

Save planetoftheweb/7f8e48a30e595ab918af4a148b8c4247 to your computer and use it in GitHub Desktop.
artist-details.component.html
<div class="container mt-3">
<div class="row justify-content-center">
<div class="col-sm-4 col-lg-3">
<img class="img-fluid rounded" src="assets/images/{{artist.shortname}}.jpg" alt="{{artist.name}} photo">
</div>
<div class="col-sm-8 col-lg-4">
<h2 class="mt-3 mt-sm-0 mb-0">{{artist.name}}</h2>
<h4 class="mt-0">{{artist.reknown}}</h4>
<p>{{artist.bio}}</p>
</div>
</div>
</div>
<!--artistdetails-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment