df
What challenges did you encounter, and how did you overcome them?df
What specific areas of your project would you like help with?df
df
What challenges did you encounter, and how did you overcome them?df
What specific areas of your project would you like help with?df
I am most proud of the progress i've made thus far with my Dev skills. One of the challenges i encountered was alignment but after recapping on my flexbox lessons i did it. Probably the CSS Box Model and Flexbox is still need to thorougly understand those.
I am most proud that I was able to completely do this my self
What challenges did you encounter, and how did you overcome them?I didn't really encounter any problems in this project
What specific areas of your project would you like help with?nothing for now
Does the solution include semantic HTML? Yes Is it accessible, and what improvements could be made? you could improve next time by reading the style guide fully and following the instructions. Does the layout look good on a range of screen sizes? yes
Hello fellow CODER seems like you had done everything correct except the linking of the images part. You used a relative link when you hadn't deployed your site onto the web but after deployment you should've changed the link type to ABSOLUTE link instead. This is your code: <img src="assets/images/image-avatar.webp" alt="profile"> <img src="assets/images/illustration-article.svg" alt="illustration-article">
Instead the fix is this: <img src="image-avatar.webp" alt="profile"> <img src="illustration-article.svg" alt="illustration-article">
Since non of the assets are no longer contained in any folder, plus in your github repository you did not upload said images. Upload the images into your repository, change your code and the images should appear properly.
Hello there from first glance i can see you that your DIV if thats what you used the one with the white background is too wide. I suggest you change your width and height in your CSS to something more managable