Please visit my codepen

Guys please visit my codepen and give some comments and tell me how I can make it better if you don’t like it -https://codepen.io/bilash25/pen/vpQxwq/

Where’s your codepen link?

Your image is not responsive. Try adding the img-responsive class to it.

Don’t use <h4> elements as paragraphs. They are used for section titles, etc. Use <p> instead. Then use CSS to change the font size.

Try using the <figure> and <figcaption> elements for the image, as they better capture what you want to do with the image and the description below it.

<figure>
  <img class="img-responsive" src="...">
  <figcaption>
    <p>This image...</p>
  </figcaption>
</figure>

You can nest the link on the same paragraph. It looks more natural that way.

<p>To know more, please visit <a href="https://en.wikipedia.org/..." target="_blank">Wikipedia</a>.</p>

Other than those, I think it’s good :+1: