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

  • @MaxCodeCraft

    Submitted

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

    This is my first complete web page project. Since we don't have the Figma for free users, I tried to get the paddings and margins with GIMP, hope this is close enough !

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

    This project was a nice transition from what I already have learned with the previous ones, and the first where I encounter some difficulties. I managed to solve all of them except two.

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

    That's the two things that I can improve:

    • set space between the ol li bullets and the text
    • the kind of table at the bottom...

    Feel free to help me on these parts ! Thank you !

    keyule 100

    @keyule

    Posted

    Instead of divs and giving it a classname of table use a html table.

    https://www.w3schools.com/html/html_tables.asp

    1
  • @oyesina-paul

    Submitted

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

    How do i add that dark background the right way pls?

    keyule 100

    @keyule

    Posted

    use a box shadow.

    https://htmlcssfreebies.com/css-box-shadow-examples/

    https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow

    0
  • Vincent 190

    @Vincent-Bouton

    Submitted

    Hello There!

    Tech

    • Astro
    • TailwindCSS

    Struggle

    For some reason the API didn´t want to get a new random advice everytime I clicked the button. So I used a math.random on the know number of advices. If someone has the solution for this I would like to know how it should be done.

    Thanks for Reading

    Happy Coding

    keyule 100

    @keyule

    Posted

    I have no idea how astro works, but its cached. You can just tell it to not cache it in your request. In JS it would be like this:

    fetch('https://api.adviceslip.com/advice', {cache: "no-cache" });

    0