Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Responsive page (CSS Flex)

Eren 210

@for-dev9


Design comparison


SolutionDesign

Community feedback

@arashKazerouni

Posted

Hello there! everything is good i love the way that you named your classes just focus a little bit more on Semantic HTML. for example, you could use section instead of div for content. or instead of this :

          <div class="social">
            <button id="btnFb" class="btnSocial">
              <i class="bi bi-facebook socialIcn"></i>
            </button>

            <button id="btnTw" class="btnSocial">
              <i class="bi bi-twitter socialIcn"></i>
            </button>

            <button id="btnIg" class="btnSocial">
              <i class="bi bi-instagram socialIcn"></i>
            </button>
          </div>

you could just do this :

 <aside class="social-icons">
          <img src="./images/facebook.svg" alt="facebook logo" />
          <img src="./images/twitter.svg" alt="twitter logo" />
          <img src="./images/instagram.svg" alt="instagram logo" />
        </aside>

keep things as simple as you can. please separate your CSS from HTML. use more comments in your code and practice and practice ;)

1

Eren 210

@for-dev9

Posted

@arashKazerouni Thanks for your advice, I was in a hurry and forgot to optimize social button class :)

1
Finney 3,030

@Finney06

Posted

nice one. you could also add transition property for the hover effects on the button and the social icons it's more cooler that way.

0

Eren 210

@for-dev9

Posted

@Finney06 Yeah, it look better after add transition, thank you

1

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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