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 Challenge

What subheading?

Confused about the question being asked

index.html
<!DOCTYPE html> 
<html> 
  <head>
    <title>Experience VR</title>
 </head>

  <body>
   <h1>Experince VR</h1> 
   <p>A simple blog about virtual reality experiences</p> 

    <p>Virtual Reality is becoming well known as a form of entertainment, but it's also finding its way into fields like education, industrial design, healthcare and so much more!</p>

    <h2>Latest VR Articles</h2>

    <h3>How Schools Use Virtual Reality to Improve Eduction</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices euismod turpis eget porta. Etiam nulla massa, pretium et massa nec, ornare dignissim nisi.</p>

  <h3>The Advantages of VR simulation</h3>
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices euismod turpis eget porta. Etiam nulla massa, pretium et massa nec, ornare dignissim nisi.</p>
  </body>
</html>

1 Answer

Where did you get that HTML file? It's different from the challenge's HTML. They want you to set proper HTML tag. Heading in HTML have 6 levels, h1-h6. So you can use h1 for main heading, h2 for subheading and so-on.