This was my first project and I was unsure about a lot of things, however everything turned out well in the end!
If someone could please check the files and see if my notes regarding the code are correct then I would really appreciate it!
This was my first project and I was unsure about a lot of things, however everything turned out well in the end!
If someone could please check the files and see if my notes regarding the code are correct then I would really appreciate it!
Hello @samdenishin congratulation on your first solution. Clean code. My opinion on your CSS comments; display:flex; Determines how elements will be displayed and not necessary to stretch elements full width. <Div> s will take up the width of the content inside if the width value is not set. justify-content:center, Aligns content to the center on the main-axis of the flex container. The main axis is determined by flex-direction value on the flex-container. align-items:center, Aligns items to the center on the cross-axis of the flex container. The cross-axis is determined by flex-direction value on the flex-container. This video helped me get a deeper understanding of flex-box.(https://www.youtube.com/watch?v=3YW65K6LcIA&list=RDCMUC29ju8bIPH5as8OGnQzwJyA&index=3)
Hello @Ammy198488,Nice work.Make sure your code has a <h1> and the head tags should follow a hierarchy <h1>, <h2> ,<h3>...so on. Use CSS to change the font size. Semantic HTML help with accessibility, search engine optimization, code readability.
Nice one, i think its a good practice to view the report and correct any listed issues.
Nice work sir, though you forget to include color and font on the text elements.