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

  • Christian 30

    @c41n3s

    Posted

    Hello Dobason, I have also started with the first learning path, so I am a complete beginner with HTML and CSS. Nevertheless, I will try to give you some hints for this and later projects:

    • use max-width instead of width. Thus your container is flexible and you will have a responsive layout on smaller devices
    • in order to write your code semantically a little bit clearer, I would suggest you to use a <main> tag for the card. With this landmark element, you can highlight the most important content of your HTML body. Here you can find some additional information.
    • the "all-text" class in your <div> element is not necessary, because you did not define this class in your styles.css
    • I can recommend using sass/scss files instead of one singe styles.css. It is one part of this video.

    Marked as helpful

    0