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 trialJerricka Kimbrough
3,725 PointsBummer! Be sure to include a <table> HTML tag between the <body></body> tags??
i need help
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Tables</title>
</head>
<body>
</body>
</html>
1 Answer
Emily Easton
13,575 PointsHi, You need to add in the <table> tag as it states, between the <body> tags. Such as:
<body>
<table> </table>
</body>
Any content that is displayed on the page is in the body, I used to do this ALL the time! A good trick is to break down the sentence and really make sure that you are properly understanding what the question is asking you. Hope this helped!!