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

  • @cesmsdev

    Posted

    You've done a great job, keep it up.

    The only comment I would make to improve would be to put all the files (images and CSS) inside folders, for example:

    social-links
       assets
           css
               main.css
           images
               image.png
       index.html
    
    0
  • @cesmsdev

    Posted

    You've done a great job, keep it up.

    Continue programming and learning 💻

    0
  • @cesmsdev

    Posted

    Hello.

    You have created a good design, but which can be improved considering the following.

    Use Flex and remove the default html styles, to avoid the default white borders. Consider using the following CSS code, to better align your card.

    html, body {
        height: 100vh;
        display: flex;
        justify-content: center; 
        align-items: center; 
        margin: 0; 
    }
    

    This CSS code does not use “position: absolute;” which prevents the content from being correctly centered and aligned, this is why I recommend using flexbox.

    .main {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    0