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

HTML

How to link page to navigation links on header?

I designed my front page, but now i want to include information about links visible on header(people, food..etc). Also do i have to write all html, head and body tags again in the new pages?

1 Answer

Steven Parker
Steven Parker
243,228 Points

You can create links by adding anchor ("a") tags with "href" properties. This is something you will see and practice in the HTML courses.

And yes, each of your pages should have html, head and body tags. If you continue with your studies, you will learn advanced techniques to make it possible to share common components between files without duplicating them.

Thank you