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

All comments

  • Eliabe 200

    @eliabedasilva

    Posted

    O atributo "alt" é importante para usuários com deficiência visual que usam leitores de tela para acessar o conteúdo da web. Quando o leitor de tela encontra uma imagem com um atributo "alt", ele lerá essa descrição alternativa em vez de exibir a imagem em si, permitindo que o usuário entenda o conteúdo da página.

    No código fornecido, o atributo "alt" já está sendo usado na tag <img>, mas apenas com o texto "qr code". Para melhorar a acessibilidade do site, é importante fornecer uma descrição mais detalhada da imagem para os usuários que não podem visualizá-la. Por exemplo, uma boa descrição alternativa para a imagem pode ser "qr code - scan the code to visit Frontend Mentor and take your coding skills to the next level", que inclui informações adicionais sobre o propósito da imagem e o que o usuário pode fazer com ela.

    Marked as helpful

    0
  • Eliabe 200

    @eliabedasilva

    Posted

    Sorry I have no experience with Saas but I can give you a tip regarding the line that makes the separation. Instead of using a <hr> use an empty <div></div> because styling the <hr> is kind of complicated, and you can't change its height, for example. already with a <div></div> you can do something like:

    div#line{
          height: 1px;
          background-color: lightgray;
    }
    

    Marked as helpful

    0
  • Eliabe 200

    @eliabedasilva

    Posted

    hi jiju278 I recommend using figma to be able to better analyze the design. For example, using the rectangle creation tool to be able to estimate the size of certain sections of the design. So your solution will be more similar to the challenge.

    Marked as helpful

    1
  • Eliabe 200

    @eliabedasilva

    Posted

    Great job!!! :>. A tip, to center the div use a flex blox with height: 100vh; width: 100vw;

    1
  • Eliabe 200

    @eliabedasilva

    Posted

    Very good job my friend.

    0