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

  • @Little-Koder

    Posted

    Great job, looks identical! Though, here are some things I noticed.

    • No semantic tags, there is no meaning in some parts of your HTML code!
    • In CSS, classes are very important! Make sure to use them more than generic selectors that include all of that types.

    I will give you more info on these topics here

    Semantic tags are VERY important! It helps the browser, and people with accessibility tech to understand what your site and each section of it is about. Here is an example

    <article><h2>An Article</h2><p>An article is meant to show the browser that this section of the site is about one specific topic!</p></article>

    Research about semantic tags! Here is a link to learn about them! w3schools Semantic Tag reference guide!

    CSS Classes create reusables styles! Make sure to use them very often, even when there is only one tag of a certain type there!

    Marked as helpful

    1