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 trialJay05 S
221 Pointsweb challenge
what are we supposed to do in task 1?
3 Answers
nvcxnvkldsjaklfds
Courses Plus Student 5,041 PointsEach code challenge and quiz have a reason behind it.
In this code challenge, Instructor wants you to get used to typing HTML tag and element.
In Challenge one: Instructor wants you to add <style> element before <h1>.
<body>
<style></style>
<h1>Nick Pettit</h1>
</body>
Once you open any HTML element you will have to close them with their closing element except self-closing elements or void elements. Here you will close like this </style>.
If you look closely you can find a common thing in closing tags and element is / before element and tag.
I hope this helps.
Karthikeyan
Diane Houghton
5,773 PointsThey want you to add a style tag. Don't read too much into it, they want you to practice writing tags. It should look like this: < style></style > That's a style tag. There are no style elements within the tag yet, you'll probably do that in the next task. The tag goes before the h1 tag, not inside it. Good luck!
Jay05 S
221 PointsGreat thank you.