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 Build a Simple Website Text Editors and HTML Creating Structure

<div>

I am not really sure what the purpose of this tag, <div>, is. What does it do? Can you make webpages look just as good with <div> as without <div>? Thanks!

1 Answer

A div tag basically defines a section in HTML, a block if you will. With HTML5 there are tags that kind of "replace" the div tag making the code more syntactically correct you could say. Yes you can make webpages look just as good without, but there are sometimes where you would prefer a div tag with a class or an id over a new HTML 5 tag.