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 trialJeffrey Chandler
1,291 PointsCant seem to find answer in video!
is document divisions not a form element? and is that not what I'm seeing in this example?
1 Answer
Craig Watson
27,930 PointsHi,
A div
tag if not part of HTML form structure. It is simply a divisional section of the HTML document. A div
is primarily used to group other elements to help with the flow of the document when styling.
Where section
tags are semantic div
tags are not.
Hope this helps, you could always have a read of this page about the HTML div tag.
Craig