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 trial

HTML HTML Basics Getting Started with HTML Headings and Paragraphs

Title and body?

When I type experience vr in the title and view the web page, it does not show the title on the tab, nor does the body.

2 Answers

Without showing your code, we cant really help but im going to ask you to do a few checks that could be the problem.

  1. Make sure your head tag is not wrapping the body
  2. Make sure you have used correct structure
  3. If it still doesn't work, compare your code to mine below and try find the problem Goodluck
<!DOCTYPE html>
<head>
    <title>Experience VR</title>
</head>

<body>
    <h1>Experience VR</h1>
    <p>blah blah blah</p>
</body>

Thanks guys but I figured it out, I was not saving my work before I tried to view it XD

Raffael Dettling
Raffael Dettling
32,999 Points

Can you please post your code so we can see whats going wrong. Sounds like a typo