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 Introduction to HTML and CSS (2016) Getting Familiar with HTML and CSS Building Web Pages with HTML and CSS

Alan Wright
Alan Wright
166 Points

<h1>Welcome to my homepage<h1>. I put the wrong ending tag. What is the correct ending tag? Do all tags end the same way

I took the quiz and I got this question wrong. I want to know what the correct ending tag would be for this line of text and if all tags when coding have to end the same.

2 Answers

Closing tags have a slash: </h1>

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

Most elements will have a closing tag. A closing tag uses a backslash ("/") before the tag name (e.g. h1). Those elements that do not have a closing tag are usually called a "self-closing element/tag" or "empty element".

Example of a element that uses an opening and closing tag:

<h1>This is an element that uses an opening and closing tag</h1>

Example of a self-closing element/tag:

<img> <!-- This is an element that uses a self-closing tag -->

You can also define a self-closing element/tag like this:

<img /> <!-- You can optionally use the backslash to clearly indicate that this element is a self-closing tag/empty element. -->