| Desktop | Tablet | Mobile |
|---|---|---|
![]() |
![]() |
![]() |
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Mobile-first workflow
- CSS media queries
- If you want to use an HTML
a(link) element and style it the way you like, first you need to unset all its default styles like this:
.link {
all: unset;
/* Now you can write any styles you want here */
}- When you want to create a perfect circle from a block element, set its
border-radiusto 50%:
.profile__picture {
border-radius: 50%;
overflow: hidden; /* Ensures that anything inside the box doesn’t overflow from the edges, making the effect work properly */
}- Github - @AminForouzan
- Frontend Mentor - @AminForouzan


