Created
June 6, 2020 08:03
-
-
Save thisiszoaib/495f11dbd49495d06f0b05fa3935e8e7 to your computer and use it in GitHub Desktop.
Card view 5
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="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