Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
61
Comments
18
P
mrcordova
@mrcordova

All comments

  • P
    Achara Chisom Solomon•490
    @AcharaChisomSolomon
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    very proud of acheiving the layout, It looked deceptively simple at first.

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

    I was forced to understand flexbox properties, especially the 'flex-shrink'

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

    Any feedback is welcome!!!!

    A news landing page

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    Looks like you forgot to add the color to the number headers at the bottom.

  • P
    Achara Chisom Solomon•490
    @AcharaChisomSolomon
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    :) Another deceptively simple project, I am proud of sticking to accessibility principles and limiting myself to as few aria- attributes as possible. I stuck to aria-invalid and aria-describeby for the error messages so that screen readers can read with the proper context.

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

    Sticking with accessibility was a pain but I persevered

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

    My js file might be a little cluttered, any help there is welcome!!! also any feedback on any other section is helpful!!!

    Contact form with emphasis on accessibility

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    You can use form.checkValidity() directly instead of checking all the individual elements.

  • P
    Achara Chisom Solomon•490
    @AcharaChisomSolomon
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    Beginning the project with accessibility in mind introduced me to the details and summary tag which made the whole project easier

    proud of this html for a single accordion

    
            
              What is Frontend Mentor, and how will it help me?
              
            
            
              Frontend Mentor offers realistic coding challenges to help developers improve their 
              frontend coding skills with projects in HTML, CSS, and JavaScript. It's suitable for 
              all levels and ideal for portfolio building.
            
    
    

    and the associated css

    details > summary {
        list-style: none;
        cursor: pointer;
        font-size: var(--summary-size);
        font-weight: 600;
        color: var(--heading-color);
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }
    details > summary:hover {
        color: var(--summay-hover-color);
    }
    .summary-icon {
        width: var(--summary-icon-dimension);
        height: var(--summary-icon-dimension);
        background-image: url(./assets/images/icon-plus.svg);
        background-repeat: no-repeat;
        background-size: contain;
        flex-shrink: 0;
    }
    details[open] > summary .summary-icon {
        background-image: url(./assets/images/icon-minus.svg);
    }
    details > p {
        margin-top: 1.5rem;
        font-size: var(--details-size);
        color: var(--details-color);
        line-height: var(--details-line-height);
    }
    
    What challenges did you encounter, and how did you overcome them?

    Nothing much

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

    Any feedback is welcome!!!

    Accessible FAQ accordion

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    Looks good

  • Thin Yu Shwe•540
    @ThinYuShwe
    Submitted over 1 year ago

    used flexbox

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    I think you forgot to change the background color for the star image.

  • P
    mrcordova•1,360
    @mrcordova
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    N/A

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

    I wasn't sure how I should deal with the image change when making the screen smaller.

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

    Any General feedback is welcomed.

    Stats Preview Card Component

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    forgot to uncomment width size for card, I'm out of new screenshots for the month.

  • P
    mrcordova•1,360
    @mrcordova
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    Making the card responsive.

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

    The box with the annual plan was a bit tough to position with all the children item.

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

    Any general feedback is welcomed, but I was wondering how to make those box-shadow under the card and process paymen button. I wasn't sure how I could get the exact color and how to get the same blur and spread.

    Order Summary Component Using Flexbox

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    I fixed the image and the price color but I am out of screenshots for the month.

  • P
    Anthony Chaiditya•70
    @AnthonyChaiditya
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    I am happy with the speed in which I completed the challenge. I also am happy with how I though through the problem/applied CSS strategies that I learned based off of a previous challenge.

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

    My biggest challenge was probably centering the entire card - I had to think through how to go about centering a section within the body of an html page.

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

    So I'm not able to see the image on the live site for some reason and I'm not sure why. I would also love to know whether or not the way I styled the page and structured the HTML is in line with best practices/accessibilty.

    QR Code HTML CSS

    2
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    try changing it to ./images/image-qr-code.png the difference is adding "." at the start of the image path.

  • BT738844•880
    @BT453567
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    Creating a useful and functional JavaScript app.

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

    Initially I thought the app would be quite straight forward but there was more to code than initially expected. Important to plan how the code will be implemented.

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

    The JavaScript code and how it might be improved.

    Tip Calculator App - HTML / CS / JS

    2
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    Looks good, for the javascript you usually you want to use let instead of var as it prevents you from accessing the variable before it has been declared because var is hoisted to the top. And use const when you are getting values by reference like elements from your html and variables you aren't directly changing. Here is more info abour var.

    Marked as helpful
  • Iamtrieves•210
    @Iamtrieves
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    Whew!

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

    Alot of challenges

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

    Loading Live Data, never worked with json before

    Time Tracking Dashboard

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    Looks good, I would look into JSON.stringfy and JSON.parse. These two methods will save you a lot time and coding.

  • Max F•110
    @8bit-shawty
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    mostly proud of my JS

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

    The responsiveness was a little challenging but using docs I was able to overcome it

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

    Nothing really

    8bit-shawty Newsletter Signup Form

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    looks good, I would take a look at semantic html and I think you forgot to implement the validation for the email input.

  • Marcial Aguinaldo•320
    @AnCial
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    I wanted to animate the popup thing... But, I forgot how to and I ended up just fiddling around and got to nothing~ T_T

    article preview challenge

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    Do you mean you wanted it to activate when you hover?

  • neven.cebic•530
    @redizork
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    none

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

    none

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

    none

    Testimonials Grid Section

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    looks good, looking at your code has given me ideas on how to use grid.

  • David•80
    @David-dawn
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    Am proud i was able to build a responsive webpage using grid

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

    None

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

    None

    Responsive four-card-feature using css grid

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    looks good, have you looked into semantic html? It would make your project more accessible.

  • Vansh Developer•200
    @Vanshdeveloper
    Submitted about 1 year ago

    product-preview-card-component

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    Your solution came out nicely, I would suggest trying to write your html to be more semantic.

  • kishoraradhya•10
    @Kish-11
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    I am proud of how i approached the task and next time i would take less time than this.

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

    I encountered many challenges as i was a beginner and i fought my way through it and all u need to do is work hard and put in the right amount of effort.

    Reciepe page using CSS

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    Looks good, I think you missed a few sentences in the instructions section. And I think you might have forgotten to use some of the fonts.

  • Jordan Rector•30
    @rectorjordan94
    Submitted about 1 year ago

    Social Links Profile Solution

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    I like your background better than the given solution. Maybe try to implement using flexbox to see what kind of things you'd need to change to make it work.

  • Harry Hatfield•30
    @harryhatfield
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    learned a bit more git/git commands not a strength

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

    no major hick ups

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

    any feedback welcome.

    Blog preview card - flexbox, html and CSS

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    Looks good, the stroke could be a bit thinner.

  • andiaz•150
    @andiaz
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    I am the most proud of getting started on Frontend Mentor and trying something on my own without relying too much on tutorials!

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

    One major challenge was how to center the content! I figured it out by googling and going through stackoverflow. Another challenge was understanding some of the default behavior for HTML and CSS. Using a basic CSS reset certainly helped :)

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

    Primarily want feedback on whether the code itself is good, whether I am following best practices on that (especially the CSS) and how closely I am following the design itself.

    QR code component

    1
    P
    mrcordova•1,360
    @mrcordova
    Posted about 1 year ago

    I think you could read up on Semantic HTML and try to see if some of your HTML could be rewritten to be more semantical.

    Marked as helpful
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub