Bill Gates Tribute Page

I would love some feedback on my tribute page, I decided to make one for Bill Gates as he has been so successful and his life is very interesting.

I don’t mind criticism, it’s a basic web page but I think I did a pretty good job, I used much more CSS than the demo page.

1 Like

Hi @tobiasmeyrick,

  • Do not use lower levels (from <h3> to <h2> ) to decrease heading font size.
<h3 class="text-center" id="who">Founder of Microsoft, Philanthropist and Competitor </h3>
 </div>
<h2 class="heading">Early Life</h2>

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

Cheers and happy coding :slight_smile: