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 trialPeter Retvari
2,566 PointsRegarding to page layout
I would like to ask about the html tags. My question is when we close the tag with e.g.: '</h2>' than the interpreter print out to the page in a new line (as a list)?
and on the other side if we write the students name like this:
'<h2>' Dave: , Peter, Jack, '</h2>
will it print to only one line?
1 Answer
P M
3,672 Pointsh2 is a block level element so when you close the tag, whatever comes next will be printed on the next line. In the second scenario, the entire text separated by commas will be printed inside the h2 block.