David
David

Reputation: 1

my footer isnt coming up as being styled but using html and css

I have made HTML and CSS files to make a website for college

the css code on the other tab is:

footer{ 
    width: 100%; 
    background-color:  000066; 
    padding: 60px 0px; 
}

So I just want to style my footer, for now

Does anyone know the reason this is happening as I've tried a few different combinations?? Thanks, everyone in advance

Image of HTML:

image of html

Upvotes: 0

Views: 28

Answers (2)

Khaliq Izrail
Khaliq Izrail

Reputation: 95

<div class="wrapper">
...
</div> <!-- please close div wrapper class tag -->

you have wrapped the ul tag with div class but at the end the div tag is not closed.

Upvotes: 1

Raushan Kumar
Raushan Kumar

Reputation: 66

Close the div element inside the footer with class of wrapper.

Upvotes: 0

Related Questions