Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Mark Collins
2,955 PointsColumns for Copy
Where can I find, or what is the code to make copy flow into columns rather than stretch across the page, please?
2 Answers

Steven Parker
215,939 PointsThere are several methods for creating layout in columns. One that can be done purely in HTML is by using the <table>
element with its associated sub-elements. A good single-page introduction can be found at W3Schools, and there's also the HTML Tables course right here.
But more modern methods make use of CSS, and they are covered in several of the Treehouse courses, including CSS - Beyond the Basics.

Mark Collins
2,955 PointsHi Steven Thanks! I've not yet looked at beyond the basics, so will do that as well as check out W3.