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 trialcorey rivers
168 Pointsi dont know how to do any of this
can you do it for me
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Corey Rivers | Designer</title>
</head>
<header><h1>Corey Rivers</h1></header>
<body>
<h1>Corey Rivers</h1>
</body>
</html>
2 Answers
Salman Akram
Courses Plus Student 40,065 PointsHi Corey,
You should have errors messages to tell you what's wrong on your parts. You haven't create section elements, footer elements inside Body tags.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Corey Rivers | Designer</title>
</head>
<body>
<header>Corey Rivers</header>
<h1>Corey Rivers</h1>
<section>............</section>
<footer>...............</footer>
</body>
</html>
Hope that helps.
Mark Casavantes
Courses Plus Student 13,401 PointsHi Corey,
I have found that you sometimes have to listen to the videos more than once to really understand the material. There have been a few instances where I got stuck as well. Also, I recommend taking notes to help you while you watch the videos. I wish there were more hints and feedback from Treehouse as to the type of error or on what line an error exists.
I had a problem with this assignment until I changed the tag below. I cannot give you a reason why this works. Maybe someone else can.
<meta charset="UTF-8">
I hope this is helpful.