How to add length to my page

On objective number 120 creating my profile and I need some length this is currently it,

how do I add length the page to add in a footer ?

I ran into the same problem with my page. I added this to the first part of my css.

body {
margin-top: 00px;
margin-bottom: 200px;
}

Of course you can change the 200 to more or less as you see fit.

1 Like

Of course that may not work now that I actually looked at your page. (Probably should have done that first.) Iā€™m new to this as well.

1 Like

The window will grow to accomodate new HTML elements into it. For instance if you add

//html
<div class="more-space"></div>

//css
.more-space {
  background: red;
  height: 400px;
  width: 100%;
}

you will see a red block of at the end of your code, which you could add other elements inside of

1 Like