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 Make a Website HTML First Build Structure

Meta Attribute

Is the meta attribute just applicable to the head section? Do we need to add it to each section? Can we set it globally?

1 Answer

Matt Trask
Matt Trask
10,027 Points

Nope, just in the <head> once per page. So if you have 4 pages to your site, home, contact, about, works, youll have 4 meta tags. Once you get to PHP youll see a much easier way to do it with the Include function

Got it! thanks.