WELCOMING FEEDBACK, just starting out. Took about an hour to figure out the flex properties and how to position things.
Eliabe
@eliabedasilvaAll comments
- @seanryderjrSubmitted over 1 year ago@eliabedasilvaPosted over 1 year ago
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 helpful0 - @rollieabuyotSubmitted almost 2 years ago
first time to do a challenge with SASS.
@eliabedasilvaPosted almost 2 years agoSorry 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 helpful0 - @jiju278Submitted almost 2 years ago
What is the easiest method to handle the picture and the responsive please ? I would appreciate some tips
@eliabedasilvaPosted almost 2 years agohi 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 helpful1 - @jyoung0930Submitted about 2 years ago
Any feedback is welcome.
@eliabedasilvaPosted about 2 years agoGreat job!!! :>. A tip, to center the div use a flex blox with height: 100vh; width: 100vw;
1 - @aatifsohelSubmitted almost 3 years ago