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 solutions

  • Submitted


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

    This is my first Full Stack project and I struggled with it for a while but through the help of online resources I was finally able to complete it. I learned a lot while building this project especially the backend part where I had to learn backend technologies in order complete this project. I would really appreciate your feedback on the project. happy coding everyone.

  • Submitted


    Hello my fellow developers this is my solution to the intro-component-with-signup-form challenge. This project has helped me delve more into form validation and I also tried my best to match the design. Please feel free to criticize my code on GitHub (https://github.com/kimanthigregory/sign-up-form.git). Your feedback will be very helpful in my continued development. Happy coding everyone.

  • Submitted


    Hello, my fellow developers am presenting to you my base apparel solution for your constructive criticisms. I have definitely enjoyed working on this project and also learned some new stuff like, regular expressions used in form validation. feel free to scrutinize my code on GitHub. happy coding everyone.

  • Submitted


    hello my fellow developers. I am presenting to you my Article preview solution. This project has helped me delve into the world of CSS animation which I had previously ignored but through this project I can't wait to do another project which involves the same. I have also noticed some improvement on my JavaScript skills since I didn't google for help but that doesn't mean I perfect 👌 I still need to take on more projects and work on writing clean code. Please take a look at my code on GitHub and give me feedback on what I can do better. happy coding everyone.

  • Submitted


    hey there my fellow developers check out my solution and give feedback

  • Submitted


    This project exposed me to some new things in the CSS layout and most especially the JavaScript part , where I encountered some difficulties when trying make the previously displayed button to disappear whenever the current paragraph is displayed .

  • Submitted


    I had problems with the JavaScript part specifically the part where i had to display different star based on the user chosen rating .i did my research and had a hang of it here is the code snippet

    
    function userRating(ratingNumber) {
        ratingStar.innerHTML =" ";
        for (var i = 0; i<ratingNumber; i++) {
            var addDiv = document.createElement("div");
            addDiv.classList.add("add-rating-star");
            ratingStar.appendChild(addDiv);
        }
    }