Skip to content

Instantly share code, notes, and snippets.

@thisiszoaib
Created June 6, 2020 08:03
Show Gist options
  • Select an option

  • Save thisiszoaib/495f11dbd49495d06f0b05fa3935e8e7 to your computer and use it in GitHub Desktop.

Select an option

Save thisiszoaib/495f11dbd49495d06f0b05fa3935e8e7 to your computer and use it in GitHub Desktop.
Card view 5
<div class="content" fxLayout="row wrap">
<div fxFlex="25%" *ngFor="let num of [1,2,3,4,5,6,7]">
<mat-card class="mat-elevation-z4">
<mat-card-header>
<mat-card-title>Mountains {{num}}</mat-card-title>
</mat-card-header>
<img mat-card-image src="./../assets/images/mountains.jpg" />
<mat-card-content>
<p>The Himalayas is a mountain range in Asia.</p>
</mat-card-content>
<mat-card-actions>
<button mat-button>LIKE</button> <button mat-button>SHARE</button>
</mat-card-actions>
</mat-card>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment