My Second attempt at the Tribute page project what doe you think?

This is the second time I did this project the first time I used bootstap. This time I wanted to build it without a framework, I did so using a mobile first approach. The page is completely responsive using flexbox for the sections. I welcome all feedback good or bad.

Thanks

It looks very nice.

The only think I’d say is that when you do some of your quotes, you’re accidentally adding in a white space character before and after the quote. For example:

      <q>
        Too many of us are not living our dreams because we are living our fears.
      </q>

Because the <q> is on a different line, HTML is going to insert a whitespace character between the quote symbol and the text. Writing it like this …

      <q>Too many of us are not living our dreams because we are living our fears.</q>

… will eliminate that problem.

But still, it looks great.

Thanks I didn’t notice that