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

  • Samarth Goyalโ€ข 220

    @geekSamarth

    Posted

    Hey @Nofisat2023, I have few recommendations for you which are as follows:

    1- Center the QR component using 'display:flex, justify-content:center and align-items:center' property on the parent container which will center the component to the page.

    2- Always use semantics tags inside your html file like, <main>, <article>, <section>, <header> etc. which makes your site accessible to the user and becomes faster while loading.

    3-Always include H1 heading inside your code for better accessibility.

    Hope this will helps you. Happy Coding!!

    Marked as helpful

    2
  • Alinaโ€ข 150

    @electr0space

    Submitted

    Hello amazing community! ๐Ÿ‘‹

    I'd like to ask you a question: what are your solution for displaying one image for desktop and another for mobile?

    Decided to simply go with :

    .mobile-img {
        display: none;
    }
    
    @media only screen and (max-width: 745px) {
        .desktop-img {
            display: none;
        }
    }
    

    What do you think? ๐Ÿ˜…

    Samarth Goyalโ€ข 220

    @geekSamarth

    Posted

    Hello Alina, your solution looks perfect, instead of using 'display: none' you can use little bit of javascript and change the src attribute of the image according to the screen size.

    Hope it will help you, Happy coding!!.

    1
  • Nikolaiโ€ข 200

    @Nikolai-Nikolin

    Submitted

    All links and buttons are active

    Samarth Goyalโ€ข 220

    @geekSamarth

    Posted

    Hi @Nikolai-Nikolin, your solution looks perfect nevertheless ,I have some recommendations for you:-

    1- Makes the design of the page responsive for multiple screen sizes which help users to access the page on multiple screens and also it helps you to make screen friendly webpages.

    2-Use of semantic tags helps to improve your webpage to load fast and SEO friendly.

    Hope these tips helps you to grow in your coding journey, Happy coding!!.

    Marked as helpful

    0
  • Samarth Goyalโ€ข 220

    @geekSamarth

    Posted

    Hi! Aditi Rao,

    I really liked the result of your project, but I have some tips that I think you will like:

    1- Your solution does not contain semantic tags i.e.,( 'main' in that case), include it in your solution.

    2- Every pages needs a <h1> to show which is the most important heading. So replace the first <p> with <h1>.

    The rest is great!! Hope it will help you to take your journey ahead.

    0