SzabiSch / bootcamp-schedule

0 stars 0 forks source link

HTML&CSS Kata: Polaroid #43

Closed codingbootcampseu closed 2 years ago

codingbootcampseu commented 3 years ago

Create a polaroid like this with HTML & CSS.

image

You can use free stock images from pexels.

Hints

The polaroid has a little shadow which uses the box-shadow property.

You can use the figure element to enclose the img and figcaption elements to stay semantic.

<figure>
  <img src="..." alt="">
  <figcaption>...</figcaption>
</figure>
SzabiSch commented 2 years ago

"Make it work"