card with QR code using Bootstrap components
Design comparison
Solution retrospective
...
What challenges did you encounter, and how did you overcome them?...
What specific areas of your project would you like help with?...
Community feedback
- @correlucasPosted about 2 years ago
👾Fala Lucas, tudo bem? Parabéns pelo seu primeiro desafio e seja bem vinda a comunidade do Frontend Mentor!
Quando você baixa os arquivos do projeto, tem um arquivo chamado
style-guide.md
onde você pode encontrar informações comohsl color codes
e ofont-size
para os títulos. A cor de fundo neste caso ébackground-color: #D5E1EF
O seu componente já está com o design pronto, um bom exercício pra melhorar seu código, seria criar a estrutura mais limpa o possível e reeduzir seu código ao máximo. Por exemplo, você pode segurar todo conteúdo em um bloco só usando (
<main>
ou<div>
) nesse caso vamos usar<main>
por que é uma tag semantica. Se você notar, nem precisa adicionar nenhum div além da principal pra segurar o conteúdo (img, h1 e p). A estrutura ideal e mais limpa possível pra esse desafio é essa aqui:<body> <main> <img src="./images/image-qr-code.png" alt="Qr Code Image" > <h1>Improve your front-end skills by building projects</h1> <p>Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </main> </body>
👾Minha avaliação para sua solução: ⭐⭐⭐⭐⭐
👋 Espero ter ajudado e continue no foco!
Marked as helpful0 - @EDDuardOo-CodePosted about 2 years ago
Congratulations completing your challenge
the result it is really good, something that you could do to improve the desing is work with rem units, instead of px units, we want to work with relative units (rem) to make the desing responsive, also you could use flex or grid to make the card responsive, you could try this code in the body
body{ display:flex; justify-content:center; aling-items:center; min-height:100vh; }
also the way you name your elements it is good, keep learning, hope to see more of your workMarked as helpful0
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