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 trialstephanie waldman
Courses Plus Student 643 PointsHow do you go back a page to check previous work. Back arrow does not work, right click does not work
In first page of HTML video series. Do not understand how to get work checked . Cannot attach code to dialogue box
<!DOCTYPE html>
<html>
<!.."This application is going to tell a story"head>
<title>Code Story</title
</head>
<body>
<h1>My Code Story</h1>
<h2>By sara Forrester<h2>
<p> This is a story of how Sara Forrester finally found Treehouse, stopped crying
learned to code and got a job.</p>
</body>
</html>
1 Answer
Sergey Podgornyy
20,660 PointsYou need to write head and title tags properly first of all.
It's not correct:
<!.."This application is going to tell a story"head>
<title>Code Story</title
</head>
This is correct:
<head> <!-- This application is going to tell a story -->
<title>Code Story</title
</head>