Tribute Page. Please point out everything I did wrong!

I tried to replicate the template page as best I could!

1 Like

Hi @scottmc87,

This is only a recommendation
A Line In The Sand, A Story About Meaty Chili and Using Classes | CSS-Tricks - CSS-Tricks

CSSlint:

  • empty rule
body {
}

HTML:

  • Do not use lower levels to decrease heading font size:
 <h1 class="text-center">Stewart Cheifet</h1>
        <h3 class="text-center"><i>The pioneer of tech journalism.</i></h3>

MDN documentation:
<h1>–<h6>: The HTML Section Heading elements - HTML: HyperText Markup Language | MDN

**Do not use lower levels to decrease heading font size: use the CSS font-size property instead.**Avoid skipping heading levels: always start from <h1>, next use <h2> and so on.

Cheers and happy coding :slight_smile: