Frontend Mentor - Blog preview card solution

This is a solution to the Blog preview card challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Note: Delete this note and update the table of contents based on what sections you keep.

Overview

The challenge

Users should be able to:

  • See hover and focus states for all interactive elements on the page

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox

What I learned

Flebox (to make an item inside container side by side)

<footer>
  <img src="some-image.jpg" />
  <p>Name Of Author</p>
</footer>
footer {
  display: flex;
  align-items: center;
}

Useful resources

  • Web Font - This challenge provide downloadable an external font. With this link we can know how to using an downloadble an external font.
  • Responsive Font - This link provide hot to make responsive font without using media query.

Author