@YonHuJJSubmitted about 1 month ago
César Mendoza
@cesmsdevAll comments
- @cesmsdevPosted about 1 month ago
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 - @Ujjval-dargarSubmitted 3 months ago@cesmsdevPosted about 1 month ago
You've done a great job, keep it up.
Continue programming and learning 💻
0 - @dharmen06Submitted about 1 month ago@cesmsdevPosted about 1 month ago
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