@rolandtamasSubmitted over 1 year ago
Hi, This is my first challenge. I would like to learn the concepts of HTML/CSS to broaden my knowledge for the web development field.
Please offer me some feedback on what can be improved/optimized. Thank you!
Hi, This is my first challenge. I would like to learn the concepts of HTML/CSS to broaden my knowledge for the web development field.
Please offer me some feedback on what can be improved/optimized. Thank you!
first <img src="images/image-qr-code.png"> ``add an alternate text to this image` second
p{
font-size: 15px;
padding: 15px 15px 15px 15px;
} you don't need to write 15px 4 times just one time when you have the repeated sizes just like that:
p{
font-size: 15px;
padding: 15px;
}```
third, for the div that contains all of these elements to center in the middle of the page you gave it a margin-top 100px and that's wrong you have several methods to center the div
like this link will help you to know;
I hope that was helpful