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

  • Andrey Larikov• 55

    @larikov174

    Posted

    Hi!

    • Your page has horizontal scoll from 320px and up to 1440px, should be fixed.
    • Button is interactive element, so you need to add :hover to css with text opacity or some shadows change. And according to classic BEM:
    1. You can't use html tag names as css selector (like h1, h2, body, p is wrong)
    2. You should rename callout--container or callout--top-header because if block has element it should be separate by double underscore like callout__container.

    Marked as helpful

    0
  • Andrey Larikov• 55

    @larikov174

    Posted

    Nice job! My opinion: apply uppercase css to your titles. You should add:

    html <h1 class="section__title"> bla bla bla </h1>

    css: .section__title { text-transform: uppercase; }

    MDN Web Docs

    0