Patrick OUAMBO
@ouambo-takouamAll comments
- @Danil-ShevchenkoSubmitted about 2 months ago@ouambo-takouamPosted about 2 months ago
In html code, it could be easier to have a main
card
bloc instead of having acontainer
bloc being parentcard
bloc. This bloc seems too much<div class="learn"><p>Learning</p></div>
. A simplespan
element withcss
code could be enough.For css code,
media.css
andstyle.css
could be combined into a single css file.Marked as helpful1 - @Ashtreus1Submitted over 1 year agoWhat are you most proud of, and what would you do differently next time?
Overall, I'm proud that I implement a solution to solve the challenge, even though this is just a basic one that any beginner can do. What would I do differently next time is that I can add interactivity and functionality here, like generating a QR Code based on the links inputted by the user.
What challenges did you encounter, and how did you overcome them?One of the challenges I encountered is to imitate the final product without using any UI extension like Figma to help me navigating what style elements used in the challenge. Fortunately, I've overcome that by looking it closely, and try to imitate as I can.
What specific areas of your project would you like help with?I don't think any areas that needed an assistance. I have pretty good background on it, that's why I implement the challenge well.
@ouambo-takouamPosted about 2 months agoThe html code is great. But instead of
div
with class card, a better choice could bemain
which is more semantic for me. Maybe thebr
inside theh1
isn't necessary for the design.In the css file,
display: block
for thecard
element isn't necessary cuzcard
is already a block element. And the font family could be declared once onbody
selector instead of setting it on bothh1
andp
. This is better for maintenance.0