Yassine
@xYAssixxAll comments
- @Ayako-YokoeSubmitted 2 months ago@xYAssixxPosted 2 months ago
- nothing to say , just trying to finish my learning path :)
- your project is prefect
0 - @NeonCodesSubmitted 2 months agoWhat are you most proud of, and what would you do differently next time?
I am proud that the final result looks close to the image preview. It was also another opportunity to continue practicing flexbox and try hover and focus states. Next time, I hope I will code faster and make less research.
What challenges did you encounter, and how did you overcome them?-Styling the two images: put each image in a
div image 1
and 2 : at first, the first image didn t have round corners despite applyingborder-radius
; putting it directly inimg{}
fixed that at first ; Then, addingpadding
toimage
erasedborder-radius
again. = addingpadding
to card instead ofimage
fixed that.-The yellow background kept getting inside the card: I changed yellow background to
html {}
instead of inside*
- Sometimes, It was easy to get lost in all the
divs
andcontainers
. I had to review my code and the indents multiple times to make sure everything was okay.-The second image doesn’t keep its size inside the
What specific areas of your project would you like help with?div
:did styling on thehead
instead of the css stylesheet to fix that.I need help positioning authorname correctly: It was positioned fine on a previous version then, I changed the font and couldn't get the same result. I can't find it in the repository either. Also, general feedback on the code itself is welcome: organization, unnecessary lines, things that could have been done more easily etc
@xYAssixxPosted 2 months ago- The solution includes semantic HTML , and that is a good start.
- The code is not accessible because it needs reordering semantic HTML5 elements
- There are some improvements that can be made:
- you don't need to use img elements inside div , only if you need to use pseudo elements like before
- to fix author section you just have to set author to flex box with no specific width
- you need to reorder semantic HTML , so that all elements are inside the body element. :
<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Sample Semantic HTML Page</title> </head> <body> <header> <h1>Website Title</h1> <p>Welcome to our website</p> </header> <section> <article> <h2>Article Title</h2> <p>This is a sample article about something interesting.</p> </article> </section> <footer> <p>© 2024 Website Name. All Rights Reserved.</p> </footer> </body> </html>
Marked as helpful0 - @rajaab100Submitted 2 months ago@xYAssixxPosted 2 months ago
- The solution includes semantic HTML.
- There is some improvements to be made like box shadow and position of the box.
- the code is somehow unstructured because you are using external in internal css .
- The solution is almost the same as the original.
0