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

  • @iElvisJosue

    Posted

    Amazing!!

    Can you give me advice on consuming APIs? I did this same project and on cell phones mine takes more than 5s to load, yours takes 2s

    0
  • @iElvisJosue

    Posted

    Avoid using % for sizes, it will always be better with Pixels/em/rem🙌

    0
  • suisoh 10

    @ssuish

    Submitted

    I am a beginner in web development, and I had a difficulty understanding the behavior of CSS. Due to my lack of experience in CSS styling, do you have any recommended resources regarding best practices, tricks, and techniques?

    @iElvisJosue

    Posted

    Good job! :)

    I checked your HTML structure and since you're starting this will probably help (Based on your structure).

    Your HTML:

    <div class="container">
        <img src="./images/image-qr-code.png" alt="QR code" height="100%" width="100%">
        <div class="title-container">
          <h1>Improve your front-end skills by building projects</h1>
        </div>
        <div class="description-container">
          <p>Scan the QR Code to visit the Frontend Mentor and take your coding skills to the next level</p>
        </div>
      </div>
    

    You can try this:

    <main class="container">
        <img src="./images/image-qr-code.png" alt="QR code" height="100%" width="100%">
        <header class="title-container">
          <h1>Improve your front-end skills by building projects</h1>
        </header >
        <section class="description-container">
          <p>Scan the QR Code to visit the Frontend Mentor and take your coding skills to the next level</p>
        </section>
      </main>
    

    Marked as helpful

    1
  • @iElvisJosue

    Posted

    Great job! but its time to learn JS (DOM its so important)

    0
  • @iElvisJosue

    Posted

    const regEx = /^\w+([.-_+]?\w+)@\w+([.-]?\w+)(.\w{2,10})+$/

    The project its different btw

    0
  • @wintercodeNKJJ

    Submitted

    Hi, 👋 everyone, This is my solution for this multistage form. I would like to have some feedback if you don't mind. 🙏

    I hade some through time compiling it with a combination of sass tailwindcss 😅

    @iElvisJosue

    Posted

    Hi bro! Nice job.

    My feedback is the following: 1.- The 'go back' button should not be visible from the first step, 2.- The validation messages should apply even when the input is empty, 3.- The inputs are not validated correctly (Number for example can be a word, that's wrong), 4.- The plan step does not change the prices to Y or M when pressing the button.

    👋

    Marked as helpful

    1
  • @iElvisJosue

    Posted

    The animations are so clean, my god!!!

    0