Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • nmmufti 20

    @nmmufti

    Submitted

    What are you most proud of, and what would you do differently next time?

    I am able to achieve the layout same as described in the requirements

    What challenges did you encounter, and how did you overcome them?

    It was not easy to find css styles as I am quite new to this

    What specific areas of your project would you like help with?

    Did I used correct CSS and can it be improved

    Herve 40

    @HerveWabo

    Posted

    Great job. Some things I'd add to your code are:

    1. The use of semantic HTML like p tags where needed.
    2. The easiest way I've found to center the card is by putting the card in a section and changing the section to a flexbox.
    <section style="
       height:100vh; 
       display: flex; 
       align-items: center;  
       justify-content: center;">
    
           <div class="rounded_div">..."Your Code"</div>
    
    </section>
    
    0
  • Cheikh Sy 30

    @chkhs

    Submitted

    What are you most proud of, and what would you do differently next time?

    I'm proud that I was able to finish this project without loking at YouTube tutorial.

    What challenges did you encounter, and how did you overcome them?

    The challenges that I encountered were css widths, heights. As I overcame them, I began to understand it more.

    What specific areas of your project would you like help with?

    The areas that I would like help with is css widths, heights and learning how to structure your project in HTML.

    Herve 40

    @HerveWabo

    Posted

    Great job. nice additions on the H1 link and the button. why did you choose button over an anchor for the blog category?

    0
  • @dmolthu

    Submitted

    What are you most proud of, and what would you do differently next time?

    I'm most proud of my ability to solve an issue that I am encountering. During this project I was having some issues with margins, centering text in the middle of a div, etc... but after trying different things to fix it , it finally worked and looks great in my opinion.

    What challenges did you encounter, and how did you overcome them?

    I encountered some issues with centering text in the middle of a div (the yellow box that says learning specifically). I overcame it by trying to work with different selectors and messing with some of their properties to manipulate it to work out for me.

    What specific areas of your project would you like help with?

    So far as of right now I don't need too much help, but I'm still learning how to use certain selectors.

    Herve 40

    @HerveWabo

    Posted

    Hey, I went through your code what I'd like to recommend is that you look more into Semantic HTML. Div elements are mainly used for styling purposes they have no semantic meaning.

    Marked as helpful

    1