@dobasonSubmitted 7 months ago
Christian
@c41n3sAll comments
- @c41n3sPosted 7 months ago
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 ofwidth
. 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 yourstyles.css
- I can recommend using sass/scss files instead of one singe
styles.css
. It is one part of this video.
Marked as helpful0 - use