Created
June 6, 2020 08:17
-
-
Save thisiszoaib/16f6b741e223b7599549cfd7ad14c4c8 to your computer and use it in GitHub Desktop.
Card view 6
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" fxLayoutGap="16px grid"> | |
| <div fxFlex="25%" fxFlex.xs="100%" fxFlex.sm="33%" *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