Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

when she had creare header.php , she cut a code from the index.php .

how she know - where to cut ? she didnt cut at the end of the nav .. she add it div - why ?

thanks

elad

1 Answer

Hi elad,

In general, you want to go down as far as you can until things start to change from page to page.

After the header div is the start of the content div:

<div id="content">

Alena knew that was going to appear on every page and decided to include it in the header.php file. After that opening div tag is where things start to change on each page so it made sense to stop there.

The closing content div tag will be part of footer.php when you create that.

thanks :)