Profile Card Component built using HTML and CSS
Design comparison
Solution retrospective
π¨βπ» Hey, I'm Kevin! A Junior Front End Web Dev Looking for work!
π¨βπ» This is my solution for the Frontend Mentor Profile Card Component!
Let me know what you guys think!
Community feedback
- @correlucasPosted about 2 years ago
πΎHello @kevintata, Congratulations on completing this challenge!
Great code and great solution! Iβve few suggestions for you that you can consider adding to your code:
To add the circles (bottom/top) in the background, the best way is by using
background-image
to manage it since adding them to thebody
you make sure it will be under everything, see the properties below and see that the comma inside each properties declare the single modification for each circle separated.body { background-color: hsl(185deg, 75%, 39%); background-image: url(./images/bg-pattern-top.svg), url(./images/bg-pattern-bottom.svg); background-repeat: no-repeat, no-repeat; background-position: top -500px left -400px, bottom -700px right -250px; font-family: 'Kumbh Sans', sans-serif; font-size: 15px; /* background: var(--Dark-cyan); */ color: var(--Very-dark-desaturated-blue); text-align: center; }
βοΈ I hope this helps you and happy coding!
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord