Great project to get started with Angular signals
Elvis Josué
@iElvisJosueAll comments
- @nelsonGutiSubmitted over 1 year ago@iElvisJosuePosted over 1 year ago
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 - @JoaquinRodriguez04Submitted over 1 year ago@iElvisJosuePosted over 1 year ago
Avoid using % for sizes, it will always be better with Pixels/em/rem🙌
0 - @ssuishSubmitted over 1 year ago
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?
@iElvisJosuePosted over 1 year agoGood 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 helpful1 - @4rdimanSubmitted over 1 year ago
in this challenge, i just focus on html and css because i haven't learn javascript yet. keep coding and stay awesome.
send me a feedback:D
@iElvisJosuePosted over 1 year agoGreat job! but its time to learn JS (DOM its so important)
0 - @anonimussapeeSubmitted over 1 year ago
¿como puedo verificar si el email es correcto?
@iElvisJosuePosted over 1 year agoconst regEx = /^\w+([.-_+]?\w+)@\w+([.-]?\w+)(.\w{2,10})+$/
The project its different btw
0 - @wintercodeNKJJSubmitted over 1 year ago
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 😅
@iElvisJosuePosted over 1 year agoHi 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 helpful1 - @chaimyahamSubmitted over 1 year ago