Tribute Page - Brian Dawkins

Hey guys,

I just finished up my Tribute Page. I kept it pretty simple, so any feedback to help the page or my code look better is welcome.

Thanks.

Hi @dmurphy5 ,

HTML

  • Do not use lower levels to decrease heading font size
<h1>Brian Dawkins</h1>
      <h4><em>Philadelphia Eagles Legend</em></h4>

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.

HTML Standard

h2–h6 elements must not be used to markup subheadings, subtitles, alternative titles and taglines unless intended to be the heading for a new section or subsection. Instead use the markup patterns in the §4.13 Common idioms without dedicated elements section of the specification.

Common Idioms
HTML Standard

-Do not use <br> to increase a gap:

  <h4><em>Philadelphia Eagles Legend</em></h4>
    </div>
    <br>
    <br>

MDN documentation:
<br>: The Line Break element - HTML: HyperText Markup Language | MDN

Do not use <br> to increase the gap between lines of text; use the CSS margin property or the <p> element.

Cheers and happy coding :slight_smile: