Tribute page to Ultimate Frisbee

Hi Everyone,

This is my tribute page. Kept it simple.

I would appreciate any feedback. Thanks in advance!

The image is not responsive. You can add a css class img-fluid to the img tag to get it fixed.

like this?

im not sure anything changed

You have applied this to img in the css

img {
  display: block;
  width: 100%;
  height: auto;
}

Although, it is now responsive but the right approach is to apply bootstrap css class img-fluid to img tag in html.

you can remove that css and add this to html.

<img src="https://static01.nyt.com/images/2009/04/30/fashion/30fitness-600.jpg" alt="Two women frisbee players running for the disc." class="img-fluid">
1 Like