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 trialTina Hunter
1,166 PointsImportant: In each task of this code challenge, the code you write should be added to the code from the previous task.
Can you let me know how to do this or what it means to add code from a previous task?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Once Upon a Time</title>
<style>
h1 {text-align:left; color:green}
</style>
</head>
<body>
<h1>Hola Amigos
<h2>Learning to Code
<p> This is where I talk about learnign to code html.
<p>It's not as easy at it appears, but I hope it will become smoother with practice.
</body>
</html>
1 Answer
Steven Parker
231,236 PointsYou won't need to add code from a previous task.
But as you do each task, you will be adding more to what you already did in the previous task(s).
In a multi-task challenge, instead of starting over for each task, you continue working where you left off. Unless the challenge asks you specifically to change something previously done, the work you did in the other tasks will remain as-is while you add more code for each following task.
Tina Hunter
1,166 PointsTina Hunter
1,166 PointsThank you Steven! For some reason I was thinking there was a previous task that I needed to open and continually add new code to! sigh of relief Thank you for saving my sanity :)