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

  • @HectorMartinDama

    Posted

    Hello @Joshdesign the desing is very similiar to the original and the mobile version is very good. The media querys are correct. To be your first proyect in frontendmentor is great.

    Marked as helpful

    1
  • @alexgabriel8

    Submitted

    I accept any kind of feedback!

    EDIT: Ignore the paragraph below, people already helped me fix my problem with Firefox!

    Also I would like to know why my page ins't working correctly on Firefox. The page shows me an advice, but does not let me get another one.

    @HectorMartinDama

    Posted

    Hello @alexgabriel8, in your request to the api use this:

     fetch('https://api.adviceslip.com/advice/' + Math.floor(Math.random() * 200))
    

    The random number is because if you do not indicate a specific advice, it does not work correctly, in your project change the advice when you click in the button five times

    Marked as helpful

    1
  • Lohuama 10

    @Lohuama

    Submitted

    after published on github the image stopped showing, but local it shows

    @HectorMartinDama

    Posted

    Hello @Lohuama, change the property "src" for this:

    src="./images/image-qr-code.png"
    

    You are missing the point, this indicates the main folder of the project.

    0
  • @HectorMartinDama

    Posted

    Hello @CrypticMango, your file js is good but I would change the api request into a function. That way you don't need to reload the page every time you click the button.

    File js

    function getApi(){
        fetch('https://api.adviceslip.com/advice/' + Math.floor(Math.random() * 200))
        .then(res => res.json())
        .then(res =>  {
            document.getElementById("phrase").innerHTML= '"' + res.slip.advice + '"'
            document.getElementById("id").innerHTML= 'ADVICE #'+ res.slip.id
        })
        .catch(err => console.log(err))
    }
    

    The random number is because if you do not indicate a specific advice, it does not work correctly.

    index.html

    <button onclick="getApi()"></button>
    

    Call the function in the button

    For the rest it is perfect.

    GitHub Repo Page preview

    Marked as helpful

    0
  • @HectorMartinDama

    Posted

    Cualquier feedback es bienvenido.

    0
  • @HectorMartinDama

    Posted

    Perfect 🤗

    0
  • @HectorMartinDama

    Posted

    @Touret21 para ser la primer challenge de FrontendMentor esta muy bien. Intenta respetar las medidas del componente. Por lo demás todo bien ☺️.

    0
  • eadq001 80

    @eadq001

    Submitted

    to someone who's gonna review my code, thank you for your time. if you have some time available, i am hoping a feedback on what should i improve(e.g. git and github skills).

    @HectorMartinDama

    Posted

    Hello eadq001, your code is good but the font-family it must be in (*) since the same font-family will be used throughout the page. To be your first Challenge in FrontendMentor it's very good. You can see my challenge in the profile.

    Marked as helpful

    0