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!
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

Matthew Gravagna
2,285 PointsI put the closing tag for header 1 as <h1/> why did the quiz say incorrect? Is that an error on the quiz side?
I put the closing tag for header 1 as <h1/> why did the quiz say incorrect? Is that an error on the quiz side? I thought it was <h1> <h1/>
2 Answers

KRIS NIKOLAISEN
54,944 PointsThe forward slash comes before h1 as in </h1>

Daniel Turato
Java Web Development Techdegree Graduate 30,124 PointsIn a closing html tag, you put the / at the start of the tag. So the tags for a h1 element would be as follows:
<h1></h1>