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

  • @Agraaa0006

    Submitted

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

    Je suis fière d'avoir pu arriver à bout de ce projet malgré mes difficultés.

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

    J'ai eu quelques problèmes pour réadapter ma page selon la taille de la fenêtre. Pour cela j'ai fait des recherches approfondies sur CSS.

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

    J'ai appris que l'on pouvait créer un code QR avec du JavaScript mais je n'ai pas pu y arriver. Alors si quelqu'un pourrait m'aider à le faire j'en serai ravie.

    @JoaoVPatricio

    Posted

    You can implement those lines in your code if you want:

    Centralizing content:

    body{
        display: flex;
        justify-content: center; 
        align-items: center;
        height: 100vh; /* fix heigth for height */
    }
    
    .container{
         display: flex; 
         justify-content: center;
    }
    

    Remove nav { margin-right: 5%; }

    .fille { height: 30vh; } You can delete this line for less space between image and text, and add this line: h2 { margin-top: -15px } for even less space

    Hope this helps!

    0