Tribute Page Block Quote

I am struggling with my Tribute Page’sblockl quote. I can’t get it to format. Here is what I have been trying:

 <blockquote><p>
            "Hope will never be silent."</p>
            <footer><cite> Harvey Milk  </footer></cite>
          </blockquote>

Here is the link to my pencode: https://codepen.io/kericks77/pen/jzXqeM/
Thanks for your help.

What do you mean by format? Where would you want to place it?

It doesn’t display as a block quote – it just looks like regular text.

Hi!

Try this <blockquote class="blockquote"><p class="mb-0">"Hope will never be silent."</p>
<footer class="blockquote-footer"> Harvey Milk <cite title="Source Title"></cite></footer>
</blockquote>

Hope that helps!

Yes it does. Thanks so much!

1 Like

You’ve also forgotten to close your <ul> tag, so the blockquote is being treated as part of the list.

1 Like