Why isn’t my footer working? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why isn’t my footer working?

Whenever I attempt to create a footer for my blog it never shows up. This is what I did... <footer> Contents </footer> Nothing shows up.

7th Mar 2021, 6:16 AM
Destin Smith
3 Answers
+ 1
Destin Smith Don't use <meta> tag in the footer, it's only placed in the head to describe the metadata. It doesn't show anything to the screen. That's why you don't see anything. Instead use <p> tag or something similar in the footer and reposition the meta tag in the head.
8th Mar 2021, 2:51 AM
Abir Hasan
Abir Hasan - avatar
0
Can you show us your code? Otherwise the reason is not obvious as it should appear at the bottom of your page.
7th Mar 2021, 6:48 AM
Abir Hasan
Abir Hasan - avatar
0
<footer> <meta name=“Cooyright” content=Copyright 2021, Destin Smith. All Rights Reserved.”> </footer>
8th Mar 2021, 12:29 AM
Destin Smith