This is a solution to the Stats preview card component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
This is a challenge from the Frontend Mentor website. Completed by Tharun-dev(Code-Beaker).
The process I went through to creating complete the challenge.
- HTML5
- CSS3
- CSS Grid
- CSS Flex
- Mobile-first web design
- Responsive Design
- About CSS Grid and its possibilities.
- Used HTML
<source>element with understanding.
<source srcset="./myFolder/myImageName.jpg" media="(min-width: 600px)" />main {
display: grid;
grid-template-columns: 1fr;
}
@media (min-width: 600px) {
main {
grid-template-columns: 1fr 1fr;
}
}I got help from the Frontend Mentor Discord Community in some stages.
- Live Site URL: https://code-beaker.github.io/stats-preview-card-component-code/
- GitHub Repository: https://github.com/Code-Beaker/stats-preview-card-component-code

